Chromium Code Reviews| Index: chrome/test/testing_browser_process.h |
| diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h |
| index 7a1ffcd923d0567c5d8347ef33a2992bd741b26a..a12d3575530fb926c574fb157d3fcf6b29f6b698 100644 |
| --- a/chrome/test/testing_browser_process.h |
| +++ b/chrome/test/testing_browser_process.h |
| @@ -23,15 +23,15 @@ class GoogleURLTracker; |
| class NotificationUIManager; |
| class PrefService; |
| class WatchDogThread; |
| - |
|
mmenke
2011/05/23 21:58:41
nit: Leave these blank lines in.
dominich
2011/05/23 22:22:55
Done.
|
| namespace base { |
| class WaitableEvent; |
| } |
| - |
| namespace policy { |
| class BrowserPolicyConnector; |
| } |
| - |
| +namespace prerender { |
| +class PrerenderTracker; |
| +} |
| namespace ui { |
| class Clipboard; |
| } |
| @@ -141,6 +141,8 @@ class TestingBrowserProcess : public BrowserProcess { |
| virtual ChromeNetLog* net_log(); |
| + virtual prerender::PrerenderTracker* prerender_tracker(); |
| + |
| #if defined(IPC_MESSAGE_LOG_ENABLED) |
| virtual void SetIPCLoggingEnabled(bool enable) {} |
| #endif |
| @@ -165,6 +167,7 @@ class TestingBrowserProcess : public BrowserProcess { |
| scoped_ptr<ProfileManager> profile_manager_; |
| scoped_ptr<NotificationUIManager> notification_ui_manager_; |
| scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; |
| + scoped_ptr<prerender::PrerenderTracker> prerender_tracker_; |
| DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess); |
| }; |