summaryrefslogtreecommitdiffstats
path: root/webkit/glue/dom_serializer.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-10 05:46:45 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-10 05:46:45 +0000
commitdd7daa80d25deb78ab365e28df4d93437357793b (patch)
treefb4dd2331820f5e32ddeb7e2bfb731f0604fbc0d /webkit/glue/dom_serializer.h
parent64c40aa34646a198a04029ee6b78dd9559595dc5 (diff)
downloadchromium_src-dd7daa80d25deb78ab365e28df4d93437357793b.zip
chromium_src-dd7daa80d25deb78ab365e28df4d93437357793b.tar.gz
chromium_src-dd7daa80d25deb78ab365e28df4d93437357793b.tar.bz2
Switch to WebFrame from the WebKit API.
I tried to avoid unnecessary changes in this CL to help make it easier to review. As part of this CL, glue/webtextinput* are folded into WebFrame / WebFrameImpl. R=dglazkov BUG=10034 TEST=none Review URL: http://codereview.chromium.org/164225 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22896 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_serializer.h')
-rw-r--r--webkit/glue/dom_serializer.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/webkit/glue/dom_serializer.h b/webkit/glue/dom_serializer.h
index fc6d0ef..3c59760 100644
--- a/webkit/glue/dom_serializer.h
+++ b/webkit/glue/dom_serializer.h
@@ -11,7 +11,6 @@
#include "base/hash_tables.h"
#include "googleurl/src/gurl.h"
-class WebFrame;
class WebFrameImpl;
namespace WebCore {
@@ -22,6 +21,10 @@ class String;
class TextEncoding;
}
+namespace WebKit {
+class WebFrame;
+}
+
namespace webkit_glue {
class DomSerializerDelegate;
@@ -50,7 +53,7 @@ class DomSerializer {
// saved links, which matched with vector:links one by one.
// The parameter local_directory_name is relative path of directory which
// contain all saved auxiliary files included all sub frames and resources.
- DomSerializer(WebFrame* webframe,
+ DomSerializer(WebKit::WebFrame* webframe,
bool recursive_serialization,
DomSerializerDelegate* delegate,
const std::vector<GURL>& links,