Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 338041: Move a bunch of files into webkit/api/src... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/glue/webkitclient_impl.cc
===================================================================
--- webkit/glue/webkitclient_impl.cc (revision 30163)
+++ webkit/glue/webkitclient_impl.cc (working copy)
@@ -29,7 +29,7 @@
#include "webkit/api/public/WebScreenInfo.h"
#include "webkit/api/public/WebString.h"
#include "webkit/api/public/WebViewClient.h"
-#include "webkit/glue/chrome_client_impl.h"
+#include "webkit/api/src/ChromeClientImpl.h"
#include "webkit/glue/glue_util.h"
#include "webkit/glue/plugins/plugin_instance.h"
#include "webkit/glue/webkit_glue.h"
@@ -39,6 +39,7 @@
#include "webkit/glue/webview_impl.h"
#include "webkit/glue/webworkerclient_impl.h"
+using WebKit::ChromeClientImpl;
using WebKit::WebApplicationCacheHost;
using WebKit::WebApplicationCacheHostClient;
using WebKit::WebCursorInfo;
@@ -416,7 +417,7 @@
// A windowless plugin can change the cursor in response to the WM_MOUSEMOVE
// event. We need to reflect the changed cursor in the frame view as the
// mouse is moved in the boundaries of the windowless plugin.
- chrome_client->SetCursorForPlugin(cursor_info);
+ chrome_client->setCursorForPlugin(cursor_info);
}
void WebKitClientImpl::notifyJSOutOfMemory(WebCore::Frame* frame) {
@@ -484,7 +485,7 @@
const WebCore::Cursor& cursor) {
ChromeClientImpl* chrome_client = ToChromeClient(widget);
if (chrome_client)
- chrome_client->SetCursor(CursorToWebCursorInfo(cursor));
+ chrome_client->setCursor(CursorToWebCursorInfo(cursor));
}
void WebKitClientImpl::widgetSetFocus(WebCore::Widget* widget) {

Powered by Google App Engine
This is Rietveld 408576698