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

Unified Diff: webkit/glue/webframe_impl.h

Issue 149172: Modify ResourceFetcher to use WebURLLoader instead of ResourceHandle.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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/webframe_impl.h
===================================================================
--- webkit/glue/webframe_impl.h (revision 19821)
+++ webkit/glue/webframe_impl.h (working copy)
@@ -39,7 +39,6 @@
#include "PlatformString.h"
MSVC_POP_WARNING();
-class AltErrorPageResourceFetcher;
class ChromePrintContext;
class WebDataSourceImpl;
class WebPluginDelegate;
@@ -48,6 +47,10 @@
class WebTextInput;
class WebTextInputImpl;
+namespace gfx {
+class BitmapPlatformDevice;
+}
+
namespace WebCore {
class Frame;
class FrameView;
@@ -59,8 +62,8 @@
struct WindowFeatures;
}
-namespace gfx {
-class BitmapPlatformDevice;
+namespace webkit_glue {
+class AltErrorPageResourceFetcher;
}
// Implementation of WebFrame, note that this is a reference counted object.
@@ -98,6 +101,7 @@
const GURL& error_page_url,
bool replace,
const GURL& fake_url);
+ virtual void DispatchWillSendRequest(WebKit::WebURLRequest* request);
virtual void ExecuteScript(const WebKit::WebScriptSource& source);
virtual void ExecuteScriptInNewContext(
const WebKit::WebScriptSource* sources, int num_sources);
@@ -280,7 +284,7 @@
int request_id);
// Resource fetcher for downloading an alternate DNS error page.
- scoped_ptr<AltErrorPageResourceFetcher> alt_error_page_fetcher_;
+ scoped_ptr<webkit_glue::AltErrorPageResourceFetcher> alt_error_page_fetcher_;
// Used to check for leaks of this object.
static int live_object_count_;

Powered by Google App Engine
This is Rietveld 408576698