2012-04-03 03:34:16 +02: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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_BROWSER_SETTINGS_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_BROWSER_SETTINGS_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "include/internal/cef_types_wrappers.h"
|
2012-05-18 17:04:56 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
struct WebPreferences;
|
|
|
|
|
2013-05-07 23:48:34 +02:00
|
|
|
void BrowserToWebSettings(const CefBrowserSettings& cef, WebPreferences& web);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_BROWSER_SETTINGS_H_
|