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

Unified Diff: webkit/glue/alt_error_page_resource_fetcher.h

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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/alt_error_page_resource_fetcher.h
===================================================================
--- webkit/glue/alt_error_page_resource_fetcher.h (revision 9942)
+++ webkit/glue/alt_error_page_resource_fetcher.h (working copy)
@@ -13,13 +13,13 @@
#include "Timer.h"
MSVC_POP_WARNING();
-#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "webkit/glue/resource_fetcher.h"
#include "webkit/glue/weberror_impl.h"
-#include "webkit/glue/weburlrequest.h"
+class ResourceFetcherWithTimeout;
class WebFrameImpl;
+class WebRequest;
class WebView;
// Used for downloading alternate dns error pages. Once downloading is done
@@ -30,6 +30,7 @@
const WebErrorImpl& web_error,
WebFrameImpl* web_frame,
const GURL& url);
+ ~AltErrorPageResourceFetcher();
virtual void OnURLFetchComplete(const WebCore::ResourceResponse& response,
const std::string& data);
@@ -44,7 +45,7 @@
// Does the actual fetching.
scoped_ptr<ResourceFetcherWithTimeout> fetcher_;
- DISALLOW_EVIL_CONSTRUCTORS(AltErrorPageResourceFetcher);
+ DISALLOW_COPY_AND_ASSIGN(AltErrorPageResourceFetcher);
};
#endif // WEBKIT_GLUE_ALT_ERROR_PAGE_RESOURCE_FETCHER_H__

Powered by Google App Engine
This is Rietveld 408576698