mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Update due to underlying chromium changes.
- WebKit API changes. - Add WebSocketStreamHandleBridge implementation. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@60 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -10,11 +10,13 @@
|
||||
|
||||
#include "base/base_drop_target.h"
|
||||
|
||||
namespace WebKit {
|
||||
class WebView;
|
||||
}
|
||||
|
||||
class BrowserDropDelegate : public BaseDropTarget {
|
||||
public:
|
||||
BrowserDropDelegate(HWND source_hwnd, WebView* webview)
|
||||
BrowserDropDelegate(HWND source_hwnd, WebKit::WebView* webview)
|
||||
: BaseDropTarget(source_hwnd),
|
||||
webview_(webview) { }
|
||||
|
||||
@@ -36,7 +38,7 @@ class BrowserDropDelegate : public BaseDropTarget {
|
||||
|
||||
|
||||
private:
|
||||
WebView* webview_;
|
||||
WebKit::WebView* webview_;
|
||||
};
|
||||
|
||||
#endif // _BROWSER_DROP_DELEGATE_H
|
||||
|
Reference in New Issue
Block a user