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

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: adding 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..c4259c76e7dc21912c7e7ac20d618774f1dbcef9 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_;
+ // TabManager is null by defalut and will be created when GetTabManager() is
+ // invoked in suppoerted platforms.
Georges Khalil 2016/07/06 18:00:04 nit (wording): TabManager is null by default and w
Georges Khalil 2016/07/06 18:00:45 Make that: |tab_manager_| is null...
Anderson Silva 2016/07/06 18:11:11 Done.
+#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