2010-11-23 15:46:01 +01:00
|
|
|
// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_SETTINGS_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_SETTINGS_H_
|
|
|
|
#pragma once
|
2010-11-23 15:46:01 +01:00
|
|
|
|
2011-05-20 22:52:47 +02:00
|
|
|
#include "include/internal/cef_types_wrappers.h"
|
2012-05-23 21:01:04 +02:00
|
|
|
|
|
|
|
namespace webkit_glue {
|
2010-11-23 15:46:01 +01:00
|
|
|
struct WebPreferences;
|
2012-05-23 21:01:04 +02:00
|
|
|
}
|
2010-11-23 15:46:01 +01:00
|
|
|
|
2012-05-23 21:01:04 +02:00
|
|
|
void BrowserToWebSettings(const CefBrowserSettings& cef,
|
|
|
|
webkit_glue::WebPreferences& web);
|
2010-11-23 15:46:01 +01:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_SETTINGS_H_
|