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

Unified Diff: webkit/glue/webframe_impl.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/webframe_impl.h
===================================================================
--- webkit/glue/webframe_impl.h (revision 9942)
+++ webkit/glue/webframe_impl.h (working copy)
@@ -26,20 +26,12 @@
#ifndef WEBKIT_GLUE_WEBFRAME_IMPL_H_
#define WEBKIT_GLUE_WEBFRAME_IMPL_H_
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
#include "base/scoped_ptr.h"
#include "base/task.h"
#include "skia/ext/platform_canvas.h"
#include "webkit/glue/password_autocomplete_listener.h"
-#include "webkit/glue/webdatasource_impl.h"
#include "webkit/glue/webframe.h"
#include "webkit/glue/webframeloaderclient_impl.h"
-#include "webkit/glue/webhistoryitem_impl.h"
-#include "webkit/glue/webplugin_delegate.h"
-#include "webkit/glue/webview_delegate.h"
MSVC_PUSH_WARNING_LEVEL(0);
#include "ResourceHandleClient.h"
@@ -48,7 +40,10 @@
MSVC_POP_WARNING();
class AltErrorPageResourceFetcher;
+class WebDataSourceImpl;
class WebErrorImpl;
+class WebHistoryItemImpl;
+class WebPluginDelegate;
class WebRequest;
class WebView;
class WebViewImpl;
@@ -220,9 +215,7 @@
// If currently_loading_request is NULL, does nothing.
void CacheCurrentRequestInfo(WebDataSourceImpl* datasource);
- void set_currently_loading_history_item(WebHistoryItemImpl* item) {
- currently_loading_history_item_ = item;
- }
+ void set_currently_loading_history_item(WebHistoryItemImpl* item);
// Getters for the impls corresponding to Get(Provisional)DataSource. They
// may return NULL if there is no corresponding data source.

Powered by Google App Engine
This is Rietveld 408576698