Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index 577d4ba71b53b914a1a262eae239179dd4daf77b..d73facf603ab9f5d7affaf7153eb13144b2d44aa 100644 |
--- a/chrome/browser/browser_process_impl.h |
+++ b/chrome/browser/browser_process_impl.h |
@@ -34,6 +34,7 @@ class DevToolsProtocolHandler; |
class FilePath; |
class NotificationService; |
class PluginDataRemover; |
+class ChromeResourceDispatcherHostObserver; |
mmenke
2011/05/24 17:56:22
nit: This should be in alphabetical order.
dominich
2011/05/24 18:01:47
Done.
|
class TabCloseableStateWatcher; |
// Real implementation of BrowserProcess that creates and returns the services. |
@@ -111,6 +112,8 @@ class BrowserProcessImpl : public BrowserProcess, |
virtual ChromeNetLog* net_log(); |
+ virtual prerender::PrerenderTracker* prerender_tracker(); |
+ |
#if defined(IPC_MESSAGE_LOG_ENABLED) |
virtual void SetIPCLoggingEnabled(bool enable); |
#endif |
@@ -276,6 +279,11 @@ class BrowserProcessImpl : public BrowserProcess, |
// Lives here so can safely log events on shutdown. |
scoped_ptr<ChromeNetLog> net_log_; |
+ scoped_ptr<prerender::PrerenderTracker> prerender_tracker_; |
cbentzel
2011/05/24 17:13:54
You may want to comment that prerender_tracker_ ne
dominich
2011/05/24 18:01:47
Done.
|
+ |
+ scoped_ptr<ChromeResourceDispatcherHostObserver> |
+ resource_dispatcher_host_observer_; |
+ |
NotificationRegistrar notification_registrar_; |
scoped_refptr<PluginDataRemover> plugin_data_remover_; |