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

Unified Diff: chrome/browser/browser_process.h

Issue 2898033002: [TabManager] Move TabManager into chrome/browser/resource_coordinator. (Closed)
Patch Set: rebase Created 3 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/browser/browser_process.h
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index 96d26749b40dbde89c0bd5cf242439a16c7ee4f4..8b742dc6bc95a7e84e6e876b73c92d412411d27c 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -67,10 +67,6 @@ namespace gcm {
class GCMDriver;
}
-namespace memory {
-class TabManager;
-}
-
namespace message_center {
class MessageCenter;
}
@@ -114,6 +110,10 @@ namespace rappor {
class RapporServiceImpl;
}
+namespace resource_coordinator {
+class TabManager;
+}
+
namespace safe_browsing {
class ClientSideDetectionService;
}
@@ -278,7 +278,7 @@ class BrowserProcess {
virtual gcm::GCMDriver* gcm_driver() = 0;
// Returns the tab manager. On non-supported platforms, this returns null.
- virtual memory::TabManager* GetTabManager() = 0;
+ virtual resource_coordinator::TabManager* GetTabManager() = 0;
// Returns the default web client state of Chrome (i.e., was it the user's
// default browser) at the time a previous check was made sometime between

Powered by Google App Engine
This is Rietveld 408576698