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

Unified Diff: webkit/glue/weburlloader_impl.h

Issue 8602002: Move some webkit_glue embedder functions into WebKitPlatformSupport virtual methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct review items Created 9 years, 1 month 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/weburlloader_impl.h
diff --git a/webkit/glue/weburlloader_impl.h b/webkit/glue/weburlloader_impl.h
index ace1cdb0a46cb799da64377acdc04a832155bb83..e41b928dfce373b185d6e988c90651d067dbc1f6 100644
--- a/webkit/glue/weburlloader_impl.h
+++ b/webkit/glue/weburlloader_impl.h
@@ -10,9 +10,11 @@
namespace webkit_glue {
+class WebKitPlatformSupportImpl;
+
class WebURLLoaderImpl : public WebKit::WebURLLoader {
public:
- WebURLLoaderImpl();
+ WebURLLoaderImpl(WebKitPlatformSupportImpl* platform);
tony 2011/11/21 22:26:19 explicit
piman 2011/11/21 22:43:27 Done.
virtual ~WebURLLoaderImpl();
// WebURLLoader methods:
@@ -32,6 +34,7 @@ class WebURLLoaderImpl : public WebKit::WebURLLoader {
private:
class Context;
scoped_refptr<Context> context_;
+ WebKitPlatformSupportImpl* platform_;
};
} // namespace webkit_glue

Powered by Google App Engine
This is Rietveld 408576698