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

Unified Diff: chrome/browser/browser.h

Issue 3129003: remove toolstrips (Closed)
Patch Set: merge Created 10 years, 4 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/app/chrome_dll_resource.h ('k') | chrome/browser/browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.h
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index ff3bb0381a77663abb7a9c7016dd431caf48c45e..57da41586749beeab50e99c8142f64c7cd74f50b 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -32,7 +32,6 @@
class BrowserWindow;
class Extension;
-class ExtensionShelfModel;
class FindBarController;
class PrefService;
class Profile;
@@ -87,8 +86,7 @@ class Browser : public TabStripModelDelegate,
FEATURE_LOCATIONBAR = 8,
FEATURE_BOOKMARKBAR = 16,
FEATURE_INFOBAR = 32,
- FEATURE_DOWNLOADSHELF = 64,
- FEATURE_EXTENSIONSHELF = 128
+ FEATURE_DOWNLOADSHELF = 64
};
// Maximized state on creation.
@@ -175,9 +173,6 @@ class Browser : public TabStripModelDelegate,
ToolbarModel* toolbar_model() { return &toolbar_model_; }
const SessionID& session_id() const { return session_id_; }
CommandUpdater* command_updater() { return &command_updater_; }
- ExtensionShelfModel* extension_shelf_model() {
- return extension_shelf_model_.get();
- }
// Get the FindBarController for this browser, creating it if it does not
// yet exist.
@@ -384,10 +379,6 @@ class Browser : public TabStripModelDelegate,
// part of an animation.
void ToolbarSizeChanged(bool is_animating);
- // Notification that the extension shelf has changed size (as a result of
- // becoming detached or attached).
- void ExtensionShelfSizeChanged();
-
// Replaces the state of the currently selected tab with the session
// history restored from the SessionRestore system.
void ReplaceRestoredTab(
@@ -508,7 +499,6 @@ class Browser : public TabStripModelDelegate,
void OpenBugReportDialog();
void ToggleBookmarkBar();
- void ToggleExtensionShelf();
void OpenBookmarkManager();
void ShowAppMenu();
@@ -985,9 +975,6 @@ class Browser : public TabStripModelDelegate,
// The model for the toolbar view.
ToolbarModel toolbar_model_;
- // The model for the extension shelf.
- scoped_ptr<ExtensionShelfModel> extension_shelf_model_;
-
// UI update coalescing and handling ////////////////////////////////////////
typedef std::map<const TabContents*, int> UpdateMap;
« no previous file with comments | « chrome/app/chrome_dll_resource.h ('k') | chrome/browser/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698