mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Modifications due to underlying chromium changes.
- Change gfx::WindowHandle to gfx::NativeWindow and gfx::ViewHandle to gfx::NativeView. - Add proxy support to BrowserWebViewDelegate. - Add webkit\port\platform\graphics\skia path to libcef_webkit_includes.vsprops due to relocation of PlatformContextSkia.h. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@4 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
static const wchar_t kWindowClassName[] = L"WebWidgetHost";
|
||||
|
||||
/*static*/
|
||||
WebWidgetHost* WebWidgetHost::Create(gfx::WindowHandle parent_window,
|
||||
WebWidgetHost* WebWidgetHost::Create(gfx::NativeWindow parent_window,
|
||||
WebWidgetDelegate* delegate) {
|
||||
WebWidgetHost* host = new WebWidgetHost();
|
||||
|
||||
@@ -45,7 +45,7 @@ WebWidgetHost* WebWidgetHost::Create(gfx::WindowHandle parent_window,
|
||||
}
|
||||
|
||||
/*static*/
|
||||
WebWidgetHost* WebWidgetHost::FromWindow(gfx::WindowHandle hwnd) {
|
||||
WebWidgetHost* WebWidgetHost::FromWindow(gfx::NativeWindow hwnd) {
|
||||
return reinterpret_cast<WebWidgetHost*>(win_util::GetWindowUserData(hwnd));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user