mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-30 11:04:52 +01:00
e826c9b1a0
- Fix Windows crash due to string type changes (issue #147). - Add missing svn:eol-style properties. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@149 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
14 lines
418 B
C++
14 lines
418 B
C++
// 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_BROWSER_SETTINGS_H
|
|
#define _CEF_BROWSER_SETTINGS_H
|
|
|
|
class CefBrowserSettings;
|
|
struct WebPreferences;
|
|
|
|
void BrowserToWebSettings(const CefBrowserSettings& cef, WebPreferences& web);
|
|
|
|
#endif // _CEF_BROWSER_SETTINGS_H
|