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

Unified Diff: chrome/test/base/testing_browser_process.h

Issue 2121403002: Enabling TabManager on testing browser process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: modified comment Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/test/base/testing_browser_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/testing_browser_process.h
diff --git a/chrome/test/base/testing_browser_process.h b/chrome/test/base/testing_browser_process.h
index d0e42d9479cc11b68cf76a8e05da9d5c629b2319..043eaaa66f0306457eb3098836c9c59f73880406 100644
--- a/chrome/test/base/testing_browser_process.h
+++ b/chrome/test/base/testing_browser_process.h
@@ -179,6 +179,12 @@ class TestingBrowserProcess : public BrowserProcess {
std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_;
+ // |tab_manager_| is null by default and will be created when
+ // GetTabManager() is invoked on supported platforms.
+#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
+ std::unique_ptr<memory::TabManager> tab_manager_;
+#endif
+
// The following objects are not owned by TestingBrowserProcess:
PrefService* local_state_;
IOThread* io_thread_;
« no previous file with comments | « no previous file | chrome/test/base/testing_browser_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698