| 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_;
|
|
|