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

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 341030: Moves webview_impl.cc, webframe_impl.cc and webframeloaderclient_impl.cc into... (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
« no previous file with comments | « webkit/glue/webkit_glue.cc ('k') | webkit/glue/webview_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitclient_impl.cc
===================================================================
--- webkit/glue/webkitclient_impl.cc (revision 30557)
+++ webkit/glue/webkitclient_impl.cc (working copy)
@@ -33,6 +33,8 @@
#include "webkit/api/public/WebURL.h"
#include "webkit/api/public/WebViewClient.h"
#include "webkit/api/src/ChromeClientImpl.h"
+#include "webkit/api/src/WebFrameImpl.h"
+#include "webkit/api/src/WebViewImpl.h"
#include "webkit/api/src/WebWorkerClientImpl.h"
#include "webkit/glue/glue_util.h"
#include "webkit/glue/plugins/plugin_instance.h"
@@ -40,7 +42,6 @@
#include "webkit/glue/webplugininfo.h"
#include "webkit/glue/websocketstreamhandle_impl.h"
#include "webkit/glue/weburlloader_impl.h"
-#include "webkit/glue/webview_impl.h"
using WebKit::ChromeClientImpl;
using WebKit::WebApplicationCacheHost;
@@ -48,6 +49,7 @@
using WebKit::WebCookie;
using WebKit::WebCursorInfo;
using WebKit::WebData;
+using WebKit::WebFrameImpl;
using WebKit::WebLocalizedString;
using WebKit::WebPluginListBuilder;
using WebKit::WebStorageNamespace;
@@ -57,6 +59,7 @@
using WebKit::WebURL;
using WebKit::WebURLLoader;
using WebKit::WebVector;
+using WebKit::WebViewImpl;
using WebKit::WebWidgetClient;
using WebKit::WebWorkerClientImpl;
@@ -417,7 +420,7 @@
WebKit::WebMediaPlayer* WebKitClientImpl::createWebMediaPlayer(
WebKit::WebMediaPlayerClient* client, WebCore::Frame* frame) {
- WebFrameImpl* webframe = WebFrameImpl::FromFrame(frame);
+ WebFrameImpl* webframe = WebFrameImpl::fromFrame(frame);
if (!webframe->client())
return NULL;
@@ -443,7 +446,7 @@
if (!frame)
return;
- WebFrameImpl* webframe = WebFrameImpl::FromFrame(frame);
+ WebFrameImpl* webframe = WebFrameImpl::fromFrame(frame);
if (!webframe->client())
return;
webframe->client()->didExhaustMemoryAvailableForScript(webframe);
« no previous file with comments | « webkit/glue/webkit_glue.cc ('k') | webkit/glue/webview_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698