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

Unified Diff: webkit/glue/webkit_glue.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/webframeloaderclient_impl.cc ('k') | webkit/glue/webkitclient_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkit_glue.cc
===================================================================
--- webkit/glue/webkit_glue.cc (revision 30557)
+++ webkit/glue/webkit_glue.cc (working copy)
@@ -44,19 +44,21 @@
#if defined(OS_WIN)
#include "webkit/api/public/win/WebInputEventFactory.h"
#endif
+#include "webkit/api/src/WebFrameImpl.h"
+#include "webkit/api/src/WebViewImpl.h"
#include "webkit/glue/glue_serialize.h"
#include "webkit/glue/glue_util.h"
-#include "webkit/glue/webframe_impl.h"
-#include "webkit/glue/webview_impl.h"
#include "webkit_version.h" // Generated
using WebKit::WebCanvas;
using WebKit::WebFrame;
+using WebKit::WebFrameImpl;
using WebKit::WebHistoryItem;
using WebKit::WebString;
using WebKit::WebVector;
using WebKit::WebView;
+using WebKit::WebViewImpl;
namespace {
@@ -123,7 +125,7 @@
WebCore::Frame* child = webFrameImpl->frame()->tree()->firstChild();
for (; child; child = child->tree()->nextSibling()) {
result.append(
- DumpFramesAsText(WebFrameImpl::FromFrame(child), recursive));
+ DumpFramesAsText(WebFrameImpl::fromFrame(child), recursive));
}
}
@@ -155,7 +157,7 @@
std::wstring DumpFrameScrollPosition(WebFrame* web_frame, bool recursive) {
WebFrameImpl* webFrameImpl = static_cast<WebFrameImpl*>(web_frame);
- WebCore::IntSize offset = webFrameImpl->frameview()->scrollOffset();
+ WebCore::IntSize offset = webFrameImpl->frameView()->scrollOffset();
std::wstring result;
if (offset.width() > 0 || offset.height() > 0) {
@@ -170,7 +172,7 @@
if (recursive) {
WebCore::Frame* child = webFrameImpl->frame()->tree()->firstChild();
for (; child; child = child->tree()->nextSibling()) {
- result.append(DumpFrameScrollPosition(WebFrameImpl::FromFrame(child),
+ result.append(DumpFrameScrollPosition(WebFrameImpl::fromFrame(child),
recursive));
}
}
@@ -274,7 +276,7 @@
void CheckForLeaks() {
#ifndef NDEBUG
- int count = WebFrameImpl::live_object_count();
+ int count = WebFrameImpl::liveObjectCount();
if (count)
DumpLeakedObject(__FILE__, __LINE__, "WebFrame", count);
#endif
« no previous file with comments | « webkit/glue/webframeloaderclient_impl.cc ('k') | webkit/glue/webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698