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

Unified Diff: chrome/browser/ui/browser_command_controller.h

Issue 1350653004: [sessions] Properly namespace recently-componentized TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac Created 5 years, 3 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 | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/browser_command_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser_command_controller.h
diff --git a/chrome/browser/ui/browser_command_controller.h b/chrome/browser/ui/browser_command_controller.h
index deae5162a0943bcfff76c17d4160a6e962958c7e..702534fed971ec80d2b98a6763c306d488d18a61 100644
--- a/chrome/browser/ui/browser_command_controller.h
+++ b/chrome/browser/ui/browser_command_controller.h
@@ -27,7 +27,7 @@ namespace chrome {
class BrowserCommandController : public CommandUpdaterDelegate,
public TabStripModelObserver,
- public TabRestoreServiceObserver {
+ public sessions::TabRestoreServiceObserver {
public:
explicit BrowserCommandController(Browser* browser);
~BrowserCommandController() override;
@@ -95,9 +95,10 @@ class BrowserCommandController : public CommandUpdaterDelegate,
int index) override;
// Overridden from TabRestoreServiceObserver:
- void TabRestoreServiceChanged(TabRestoreService* service) override;
- void TabRestoreServiceDestroyed(TabRestoreService* service) override;
- void TabRestoreServiceLoaded(TabRestoreService* service) override;
+ void TabRestoreServiceChanged(sessions::TabRestoreService* service) override;
+ void TabRestoreServiceDestroyed(
+ sessions::TabRestoreService* service) override;
+ void TabRestoreServiceLoaded(sessions::TabRestoreService* service) override;
// Returns true if the regular Chrome UI (not the fullscreen one and
// not the single-tab one) is shown. Used for updating window command states
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/browser_command_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698