| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TOOLBAR_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_ACTIONS_MODEL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TOOLBAR_MODEL_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_ACTIONS_MODEL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "base/prefs/pref_change_registrar.h" | 10 #include "base/prefs/pref_change_registrar.h" |
| 11 #include "base/scoped_observer.h" | 11 #include "base/scoped_observer.h" |
| 12 #include "chrome/browser/extensions/api/extension_action/extension_action_api.h" | 12 #include "chrome/browser/extensions/api/extension_action/extension_action_api.h" |
| 13 #include "chrome/browser/extensions/extension_action.h" | 13 #include "chrome/browser/extensions/extension_action.h" |
| 14 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
| 15 #include "extensions/browser/extension_prefs.h" | 15 #include "extensions/browser/extension_prefs.h" |
| 16 #include "extensions/browser/extension_registry_observer.h" | 16 #include "extensions/browser/extension_registry_observer.h" |
| 17 #include "extensions/common/extension.h" | 17 #include "extensions/common/extension.h" |
| 18 | 18 |
| 19 class Browser; | 19 class Browser; |
| 20 class PrefService; | 20 class PrefService; |
| 21 class Profile; | 21 class Profile; |
| 22 class ToolbarActionsBar; |
| 23 class ToolbarActionViewController; |
| 22 | 24 |
| 23 namespace extensions { | 25 namespace extensions { |
| 24 class ExtensionRegistry; | 26 class ExtensionRegistry; |
| 25 class ExtensionSet; | 27 class ExtensionSet; |
| 28 } |
| 26 | 29 |
| 27 // Model for the browser actions toolbar. | 30 // Model for the browser actions toolbar. |
| 28 class ExtensionToolbarModel : public ExtensionActionAPI::Observer, | 31 class ToolbarActionsModel : public extensions::ExtensionActionAPI::Observer, |
| 29 public ExtensionRegistryObserver, | 32 public extensions::ExtensionRegistryObserver, |
| 30 public KeyedService { | 33 public KeyedService { |
| 31 public: | 34 public: |
| 32 // The different options for highlighting. | 35 // The different options for highlighting. |
| 33 enum HighlightType { | 36 enum HighlightType { |
| 34 HIGHLIGHT_NONE, | 37 HIGHLIGHT_NONE, |
| 35 HIGHLIGHT_INFO, | 38 HIGHLIGHT_INFO, |
| 36 HIGHLIGHT_WARNING, | 39 HIGHLIGHT_WARNING, |
| 37 }; | 40 }; |
| 38 | 41 |
| 39 ExtensionToolbarModel(Profile* profile, ExtensionPrefs* extension_prefs); | 42 // The different types of actions. |
| 40 ~ExtensionToolbarModel() override; | 43 enum ActionType { |
| 44 COMPONENT_ACTION, |
| 45 EXTENSION_ACTION, |
| 46 }; |
| 47 |
| 48 // An action id and its corresponding ActionType. |
| 49 struct ToolbarItem { |
| 50 ToolbarItem() {} |
| 51 ToolbarItem(std::string action_id, ActionType action_type) |
| 52 : id(action_id), type(action_type) {} |
| 53 |
| 54 bool operator==(const ToolbarItem& other) { return other.id == id; } |
| 55 |
| 56 std::string id; |
| 57 ActionType type; |
| 58 }; |
| 59 |
| 60 ToolbarActionsModel(Profile* profile, |
| 61 extensions::ExtensionPrefs* extension_prefs); |
| 62 ~ToolbarActionsModel() override; |
| 41 | 63 |
| 42 // A class which is informed of changes to the model; represents the view of | 64 // A class which is informed of changes to the model; represents the view of |
| 43 // MVC. Also used for signaling view changes such as showing extension popups. | 65 // MVC. Also used for signaling view changes such as showing extension popups. |
| 44 // TODO(devlin): Should this really be an observer? It acts more like a | 66 // TODO(devlin): Should this really be an observer? It acts more like a |
| 45 // delegate. | 67 // delegate. |
| 46 class Observer { | 68 class Observer { |
| 47 public: | 69 public: |
| 48 // Signals that an |extension| has been added to the toolbar at |index|. | 70 // Signals that an action with |id| has been added to the toolbar at |
| 49 // This will *only* be called after the toolbar model has been initialized. | 71 // |index|. This will *only* be called after the toolbar model has been |
| 50 virtual void OnToolbarExtensionAdded(const Extension* extension, | 72 // initialized. |
| 51 int index) = 0; | 73 virtual void OnToolbarActionAdded(const std::string& id, int index) = 0; |
| 52 | 74 |
| 53 // Signals that the given |extension| has been removed from the toolbar. | 75 // Signals that the given action with |id| has been removed from the |
| 54 virtual void OnToolbarExtensionRemoved(const Extension* extension) = 0; | 76 // toolbar. |
| 77 virtual void OnToolbarActionRemoved(const std::string& id) = 0; |
| 55 | 78 |
| 56 // Signals that the given |extension| has been moved to |index|. |index| is | 79 // Signals that the given action with |id| has been moved to |index|. |
| 57 // the desired *final* index of the extension (that is, in the adjusted | 80 // |index| is the desired *final* index of the action (that is, in the |
| 58 // order, extension should be at |index|). | 81 // adjusted order, action should be at |index|). |
| 59 virtual void OnToolbarExtensionMoved(const Extension* extension, | 82 virtual void OnToolbarActionMoved(const std::string& id, int index) = 0; |
| 60 int index) = 0; | |
| 61 | 83 |
| 62 // Signals that the browser action for the given |extension| has been | 84 // Signals that the browser action with |id| has been updated. |
| 63 // updated. | 85 virtual void OnToolbarActionUpdated(const std::string& id) = 0; |
| 64 virtual void OnToolbarExtensionUpdated(const Extension* extension) = 0; | |
| 65 | 86 |
| 66 // Signals the |extension| to show the popup now in the active window. | 87 // Signals the action with |id| to show the popup now in the active |
| 67 // If |grant_active_tab| is true, then active tab permissions should be | 88 // window. If |grant_active_tab| is true, then active tab permissions |
| 68 // given to the extension (only do this if this is through a user action). | 89 // should be given to the action (only do this if this is through a user |
| 69 // Returns true if a popup was slated to be shown. | 90 // action). Returns true if a popup was slated to be shown. |
| 70 virtual bool ShowExtensionActionPopup(const Extension* extension, | 91 virtual bool ShowToolbarActionPopup(const std::string& id, |
| 71 bool grant_active_tab) = 0; | 92 bool grant_active_tab) = 0; |
| 72 | 93 |
| 73 // Signals when the container needs to be redrawn because of a size change, | 94 // Signals when the container needs to be redrawn because of a size change, |
| 74 // and when the model has finished loading. | 95 // and when the model has finished loading. |
| 75 virtual void OnToolbarVisibleCountChanged() = 0; | 96 virtual void OnToolbarVisibleCountChanged() = 0; |
| 76 | 97 |
| 77 // Signals that the model has entered or exited highlighting mode, or that | 98 // Signals that the model has entered or exited highlighting mode, or that |
| 78 // the extensions being highlighted have (probably*) changed. Highlighting | 99 // the actions being highlighted have (probably*) changed. Highlighting |
| 79 // mode indicates that only a subset of the extensions are actively | 100 // mode indicates that only a subset of the toolbar actions are actively |
| 80 // displayed, and those extensions should be highlighted for extra emphasis. | 101 // displayed, and those actions should be highlighted for extra emphasis. |
| 81 // * probably, because if we are in highlight mode and receive a call to | 102 // * probably, because if we are in highlight mode and receive a call to |
| 82 // highlight a new set of extensions, we do not compare the current set | 103 // highlight a new set of actions, we do not compare the current set with |
| 83 // with the new set (and just assume the new set is different). | 104 // the new set (and just assume the new set is different). |
| 84 virtual void OnToolbarHighlightModeChanged(bool is_highlighting) = 0; | 105 virtual void OnToolbarHighlightModeChanged(bool is_highlighting) = 0; |
| 85 | 106 |
| 86 // Signals that the toolbar model has been initialized, so that if any | 107 // Signals that the toolbar model has been initialized, so that if any |
| 87 // observers were postponing animation during the initialization stage, they | 108 // observers were postponing animation during the initialization stage, they |
| 88 // can catch up. | 109 // can catch up. |
| 89 virtual void OnToolbarModelInitialized() = 0; | 110 virtual void OnToolbarModelInitialized() = 0; |
| 90 | 111 |
| 91 // Returns the browser associated with the Observer. | 112 // Returns the browser associated with the Observer. |
| 92 virtual Browser* GetBrowser() = 0; | 113 virtual Browser* GetBrowser() = 0; |
| 93 | 114 |
| 94 protected: | 115 protected: |
| 95 virtual ~Observer() {} | 116 virtual ~Observer() {} |
| 96 }; | 117 }; |
| 97 | 118 |
| 98 // Convenience function to get the ExtensionToolbarModel for a Profile. | 119 // Convenience function to get the ToolbarActionsModel for a Profile. |
| 99 static ExtensionToolbarModel* Get(Profile* profile); | 120 static ToolbarActionsModel* Get(Profile* profile); |
| 100 | 121 |
| 101 // Adds or removes an observer. | 122 // Adds or removes an observer. |
| 102 void AddObserver(Observer* observer); | 123 void AddObserver(Observer* observer); |
| 103 void RemoveObserver(Observer* observer); | 124 void RemoveObserver(Observer* observer); |
| 104 | 125 |
| 105 // Moves the given |extension|'s icon to the given |index|. | 126 // Moves the given action with |id|'s icon to the given |index|. |
| 106 void MoveExtensionIcon(const std::string& id, size_t index); | 127 void MoveActionIcon(const std::string& id, size_t index); |
| 107 | 128 |
| 108 // Sets the number of extension icons that should be visible. | 129 // Sets the number of action icons that should be visible. |
| 109 // If count == size(), this will set the visible icon count to -1, meaning | 130 // If count == size(), this will set the visible icon count to -1, meaning |
| 110 // "show all actions". | 131 // "show all actions". |
| 111 void SetVisibleIconCount(size_t count); | 132 void SetVisibleIconCount(size_t count); |
| 112 | 133 |
| 113 size_t visible_icon_count() const { | 134 size_t visible_icon_count() const { |
| 114 // We have guards around this because |visible_icon_count_| can be set by | 135 // We have guards around this because |visible_icon_count_| can be set by |
| 115 // prefs/sync, and we want to ensure that the icon count returned is within | 136 // prefs/sync, and we want to ensure that the icon count returned is within |
| 116 // bounds. | 137 // bounds. |
| 117 return visible_icon_count_ == -1 ? | 138 return visible_icon_count_ == -1 |
| 118 toolbar_items().size() : | 139 ? toolbar_items().size() |
| 119 std::min(static_cast<size_t>(visible_icon_count_), | 140 : std::min(static_cast<size_t>(visible_icon_count_), |
| 120 toolbar_items().size()); | 141 toolbar_items().size()); |
| 121 } | 142 } |
| 122 | 143 |
| 123 bool all_icons_visible() const { return visible_icon_count_ == -1; } | 144 bool all_icons_visible() const { return visible_icon_count_ == -1; } |
| 124 | 145 |
| 125 bool extensions_initialized() const { return extensions_initialized_; } | 146 bool actions_initialized() const { return actions_initialized_; } |
| 126 | 147 |
| 127 const ExtensionList& toolbar_items() const { | 148 ScopedVector<ToolbarActionViewController> CreateActions( |
| 149 Browser* browser, |
| 150 ToolbarActionsBar* bar); |
| 151 |
| 152 const std::vector<ToolbarItem>& toolbar_items() const { |
| 128 return is_highlighting() ? highlighted_items_ : toolbar_items_; | 153 return is_highlighting() ? highlighted_items_ : toolbar_items_; |
| 129 } | 154 } |
| 130 | 155 |
| 131 bool is_highlighting() const { return highlight_type_ != HIGHLIGHT_NONE; } | 156 bool is_highlighting() const { return highlight_type_ != HIGHLIGHT_NONE; } |
| 132 HighlightType highlight_type() const { return highlight_type_; } | 157 HighlightType highlight_type() const { return highlight_type_; } |
| 133 | 158 |
| 134 void OnExtensionToolbarPrefChange(); | 159 void OnActionToolbarPrefChange(); |
| 135 | 160 |
| 136 // Returns the index of the given |id|, or -1 if the id wasn't found. | 161 // Returns the index of the given action with |id|, or -1 if the id |
| 162 // wasn't found. |
| 137 int GetIndexForId(const std::string& id) const; | 163 int GetIndexForId(const std::string& id) const; |
| 138 | 164 |
| 139 // Finds the Observer associated with |browser| and tells it to display a | 165 // Finds the Observer associated with |browser| and tells it to display a |
| 140 // popup for the given |extension|. If |grant_active_tab| is true, this | 166 // popup for the given action with |id|. If |grant_active_tab| is true, |
| 141 // grants active tab permissions to the |extension|; only do this because of | 167 // this grants active tab permissions to the action; only do this because of |
| 142 // a direct user action. | 168 // a direct user action. |
| 143 bool ShowExtensionActionPopup(const Extension* extension, | 169 bool ShowToolbarActionPopup(const std::string& id, |
| 144 Browser* browser, | 170 Browser* browser, |
| 145 bool grant_active_tab); | 171 bool grant_active_tab); |
| 146 | 172 |
| 147 // Ensures that the extensions in the |extension_ids| list are visible on the | 173 // Ensures that the actions in the |action_ids| list are visible on the |
| 148 // toolbar. This might mean they need to be moved to the front (if they are in | 174 // toolbar. This might mean they need to be moved to the front (if they are in |
| 149 // the overflow bucket). | 175 // the overflow bucket). |
| 150 void EnsureVisibility(const ExtensionIdList& extension_ids); | 176 void EnsureVisibility(const std::vector<std::string>& action_ids); |
| 151 | 177 |
| 152 // Highlights the extensions specified by |extension_ids|. This will cause | 178 // Highlights the actions specified by |action_ids|. This will cause |
| 153 // the ToolbarModel to only display those extensions. | 179 // the ToolbarModel to only display those actions. |
| 154 // Highlighting mode is only entered if there is at least one extension to | 180 // Highlighting mode is only entered if there is at least one action to be |
| 155 // be shown. | 181 // shown. |
| 156 // Returns true if highlighting mode is entered, false otherwise. | 182 // Returns true if highlighting mode is entered, false otherwise. |
| 157 bool HighlightExtensions(const ExtensionIdList& extension_ids, | 183 bool HighlightActions(const std::vector<std::string>& action_ids, |
| 158 HighlightType type); | 184 HighlightType type); |
| 159 | 185 |
| 160 // Stop highlighting extensions. All extensions can be shown again, and the | 186 // Stop highlighting actions. All actions can be shown again, and the |
| 161 // number of visible icons will be reset to what it was before highlighting. | 187 // number of visible icons will be reset to what it was before highlighting. |
| 162 void StopHighlighting(); | 188 void StopHighlighting(); |
| 163 | 189 |
| 164 // Returns true if the toolbar model is running with the redesign and is | 190 // Returns true if the toolbar model is running with the redesign and is |
| 165 // showing new icons as a result. | 191 // showing new icons as a result. |
| 166 bool RedesignIsShowingNewIcons() const; | 192 bool RedesignIsShowingNewIcons() const; |
| 167 | 193 |
| 168 private: | 194 private: |
| 169 // Callback when extensions are ready. | 195 // Callback when actions are ready. |
| 170 void OnReady(); | 196 void OnReady(); |
| 171 | 197 |
| 172 // ExtensionRegistryObserver: | 198 // ExtensionRegistryObserver: |
| 173 void OnExtensionLoaded(content::BrowserContext* browser_context, | 199 void OnExtensionLoaded(content::BrowserContext* browser_context, |
| 174 const Extension* extension) override; | 200 const extensions::Extension* extension) override; |
| 175 void OnExtensionUnloaded(content::BrowserContext* browser_context, | 201 void OnExtensionUnloaded( |
| 176 const Extension* extension, | 202 content::BrowserContext* browser_context, |
| 177 UnloadedExtensionInfo::Reason reason) override; | 203 const extensions::Extension* extension, |
| 204 extensions::UnloadedExtensionInfo::Reason reason) override; |
| 178 void OnExtensionUninstalled(content::BrowserContext* browser_context, | 205 void OnExtensionUninstalled(content::BrowserContext* browser_context, |
| 179 const Extension* extension, | 206 const extensions::Extension* extension, |
| 180 extensions::UninstallReason reason) override; | 207 extensions::UninstallReason reason) override; |
| 181 | 208 |
| 182 // ExtensionActionAPI::Observer: | 209 // ExtensionActionAPI::Observer: |
| 183 void OnExtensionActionUpdated( | 210 void OnExtensionActionUpdated( |
| 184 ExtensionAction* extension_action, | 211 ExtensionAction* extension_action, |
| 185 content::WebContents* web_contents, | 212 content::WebContents* web_contents, |
| 186 content::BrowserContext* browser_context) override; | 213 content::BrowserContext* browser_context) override; |
| 187 void OnExtensionActionVisibilityChanged(const std::string& extension_id, | 214 void OnExtensionActionVisibilityChanged(const std::string& extension_id, |
| 188 bool is_now_visible) override; | 215 bool is_now_visible) override; |
| 189 | 216 |
| 190 // To be called after the extension service is ready; gets loaded extensions | 217 // To be called after the extension service is ready; gets loaded extensions |
| 191 // from the ExtensionRegistry and their saved order from the pref service | 218 // from the ExtensionRegistry and their saved order from the pref service |
| 192 // and constructs |toolbar_items_| from these data. IncognitoPopulate() | 219 // and constructs |toolbar_items_| from these data. IncognitoPopulate() |
| 193 // takes the shortcut - looking at the regular model's content and modifying | 220 // takes the shortcut - looking at the regular model's content and modifying |
| 194 // it. | 221 // it. |
| 195 void InitializeExtensionList(); | 222 void InitializeActionList(); |
| 196 void Populate(ExtensionIdList* positions); | 223 void Populate(std::vector<std::string>* positions); |
| 197 void IncognitoPopulate(); | 224 void IncognitoPopulate(); |
| 198 | 225 |
| 199 // Save the model to prefs. | 226 // Save the model to prefs. |
| 200 void UpdatePrefs(); | 227 void UpdatePrefs(); |
| 201 | 228 |
| 202 // Updates |extension|'s browser action visibility pref if the browser action | 229 // Updates action with |action|'s id's browser action visibility pref if the |
| 203 // is in the overflow menu and should be considered hidden. | 230 // browser action is in the overflow menu and should be considered hidden. |
| 204 void MaybeUpdateVisibilityPref(const Extension* extension, size_t index); | 231 void MaybeUpdateVisibilityPref(const ToolbarItem& action, size_t index); |
| 205 | 232 |
| 206 // Calls MaybeUpdateVisibilityPref() for each extension in |toolbar_items|. | 233 // Calls MaybeUpdateVisibilityPref() for each action in |toolbar_items|. |
| 207 void MaybeUpdateVisibilityPrefs(); | 234 void MaybeUpdateVisibilityPrefs(); |
| 208 | 235 |
| 209 // Finds the last known visible position of the icon for an |extension|. The | 236 // Finds the last known visible position of the icon for |action|. The value |
| 210 // value returned is a zero-based index into the vector of visible items. | 237 // returned is a zero-based index into the vector of visible items. |
| 211 size_t FindNewPositionFromLastKnownGood(const Extension* extension); | 238 size_t FindNewPositionFromLastKnownGood(const ToolbarItem& action); |
| 212 | 239 |
| 213 // Returns true if the given |extension| should be added to the toolbar. | 240 // Returns true if the given |extension| should be added to the toolbar. |
| 214 bool ShouldAddExtension(const Extension* extension); | 241 bool ShouldAddExtension(const extensions::Extension* extension); |
| 215 | 242 |
| 216 // Adds or removes the given |extension| from the toolbar model. | 243 // Adds or removes the given |extension| from the toolbar model. |
| 217 void AddExtension(const Extension* extension); | 244 void AddExtension(const extensions::Extension* extension); |
| 218 void RemoveExtension(const Extension* extension); | 245 void RemoveExtension(const extensions::Extension* extension); |
| 246 |
| 247 // Looks up and returns the extension with the given |id| in the set of |
| 248 // enabled extensions. |
| 249 const extensions::Extension* GetExtensionById(const std::string& id) const; |
| 219 | 250 |
| 220 // Our observers. | 251 // Our observers. |
| 221 base::ObserverList<Observer> observers_; | 252 base::ObserverList<Observer> observers_; |
| 222 | 253 |
| 223 // The Profile this toolbar model is for. | 254 // The Profile this toolbar model is for. |
| 224 Profile* profile_; | 255 Profile* profile_; |
| 225 | 256 |
| 226 ExtensionPrefs* extension_prefs_; | 257 extensions::ExtensionPrefs* extension_prefs_; |
| 227 PrefService* prefs_; | 258 PrefService* prefs_; |
| 228 | 259 |
| 229 // The ExtensionActionAPI object, cached for convenience. | 260 // The ExtensionActionAPI object, cached for convenience. |
| 230 ExtensionActionAPI* extension_action_api_; | 261 extensions::ExtensionActionAPI* extension_action_api_; |
| 262 |
| 263 // The ExtensionRegistry object, cached for convenience. |
| 264 extensions::ExtensionRegistry* extension_registry_; |
| 231 | 265 |
| 232 // True if we've handled the initial EXTENSIONS_READY notification. | 266 // True if we've handled the initial EXTENSIONS_READY notification. |
| 233 bool extensions_initialized_; | 267 bool actions_initialized_; |
| 234 | 268 |
| 235 // If true, we include all extensions in the toolbar model. If false, we only | 269 // If true, we include all actions in the toolbar model. |
| 236 // include browser actions. | 270 bool use_redesign_; |
| 237 bool include_all_extensions_; | |
| 238 | 271 |
| 239 // Ordered list of browser action buttons. | 272 // Ordered list of browser actions. |
| 240 ExtensionList toolbar_items_; | 273 std::vector<ToolbarItem> toolbar_items_; |
| 241 | 274 |
| 242 // List of browser action buttons which should be highlighted. | 275 // List of browser actions which should be highlighted. |
| 243 ExtensionList highlighted_items_; | 276 std::vector<ToolbarItem> highlighted_items_; |
| 244 | 277 |
| 245 // The current type of highlight (with HIGHLIGHT_NONE indicating no current | 278 // The current type of highlight (with HIGHLIGHT_NONE indicating no current |
| 246 // highlight). | 279 // highlight). |
| 247 HighlightType highlight_type_; | 280 HighlightType highlight_type_; |
| 248 | 281 |
| 249 ExtensionIdList last_known_positions_; | 282 // A list of action ids ordered to correspond with their last known |
| 283 // positions. |
| 284 std::vector<std::string> last_known_positions_; |
| 250 | 285 |
| 251 // The number of icons visible (the rest should be hidden in the overflow | 286 // The number of icons visible (the rest should be hidden in the overflow |
| 252 // chevron). A value of -1 indicates that all icons should be visible. | 287 // chevron). A value of -1 indicates that all icons should be visible. |
| 253 // Instead of using this variable directly, use visible_icon_count() if | 288 // Instead of using this variable directly, use visible_icon_count() if |
| 254 // possible. | 289 // possible. |
| 255 // TODO(devlin): Make a new variable to indicate that all icons should be | 290 // TODO(devlin): Make a new variable to indicate that all icons should be |
| 256 // visible, instead of overloading this one. | 291 // visible, instead of overloading this one. |
| 257 int visible_icon_count_; | 292 int visible_icon_count_; |
| 258 | 293 |
| 259 ScopedObserver<ExtensionActionAPI, ExtensionActionAPI::Observer> | 294 ScopedObserver<extensions::ExtensionActionAPI, |
| 295 extensions::ExtensionActionAPI::Observer> |
| 260 extension_action_observer_; | 296 extension_action_observer_; |
| 261 | 297 |
| 262 // Listen to extension load, unloaded notifications. | 298 // Listen to extension load, unloaded notifications. |
| 263 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | 299 ScopedObserver<extensions::ExtensionRegistry, ExtensionRegistryObserver> |
| 264 extension_registry_observer_; | 300 extension_registry_observer_; |
| 265 | 301 |
| 266 // For observing change of toolbar order preference by external entity (sync). | 302 // For observing change of toolbar order preference by external entity (sync). |
| 267 PrefChangeRegistrar pref_change_registrar_; | 303 PrefChangeRegistrar pref_change_registrar_; |
| 268 base::Closure pref_change_callback_; | 304 base::Closure pref_change_callback_; |
| 269 | 305 |
| 270 base::WeakPtrFactory<ExtensionToolbarModel> weak_ptr_factory_; | 306 base::WeakPtrFactory<ToolbarActionsModel> weak_ptr_factory_; |
| 271 | 307 |
| 272 DISALLOW_COPY_AND_ASSIGN(ExtensionToolbarModel); | 308 DISALLOW_COPY_AND_ASSIGN(ToolbarActionsModel); |
| 273 }; | 309 }; |
| 274 | 310 |
| 275 } // namespace extensions | 311 #endif // CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_ACTIONS_MODEL_H_ |
| 276 | |
| 277 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TOOLBAR_MODEL_H_ | |
| OLD | NEW |