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

Unified Diff: chrome/test/testing_browser_process.h

Issue 6966017: Remove a chrome dependency by removing Prerender from ResourceDispatcherHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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: 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);
};

Powered by Google App Engine
This is Rietveld 408576698