| 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_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_
H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_
H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // that are currently visible in the UI. Use SystemIndicatorManagerFactory to | 30 // that are currently visible in the UI. Use SystemIndicatorManagerFactory to |
| 31 // create a SystemIndicatorManager object. | 31 // create a SystemIndicatorManager object. |
| 32 class SystemIndicatorManager : public ExtensionRegistryObserver, | 32 class SystemIndicatorManager : public ExtensionRegistryObserver, |
| 33 public ExtensionActionAPI::Observer, | 33 public ExtensionActionAPI::Observer, |
| 34 public KeyedService { | 34 public KeyedService { |
| 35 public: | 35 public: |
| 36 SystemIndicatorManager(Profile* profile, StatusTray* status_tray); | 36 SystemIndicatorManager(Profile* profile, StatusTray* status_tray); |
| 37 virtual ~SystemIndicatorManager(); | 37 virtual ~SystemIndicatorManager(); |
| 38 | 38 |
| 39 // KeyedService implementation. | 39 // KeyedService implementation. |
| 40 virtual void Shutdown() OVERRIDE; | 40 virtual void Shutdown() override; |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 FRIEND_TEST_ALL_PREFIXES(::SystemIndicatorApiTest, SystemIndicator); | 43 FRIEND_TEST_ALL_PREFIXES(::SystemIndicatorApiTest, SystemIndicator); |
| 44 | 44 |
| 45 // ExtensionRegistryObserver implementation. | 45 // ExtensionRegistryObserver implementation. |
| 46 virtual void OnExtensionUnloaded( | 46 virtual void OnExtensionUnloaded( |
| 47 content::BrowserContext* browser_context, | 47 content::BrowserContext* browser_context, |
| 48 const Extension* extension, | 48 const Extension* extension, |
| 49 UnloadedExtensionInfo::Reason reason) OVERRIDE; | 49 UnloadedExtensionInfo::Reason reason) override; |
| 50 | 50 |
| 51 // ExtensionActionAPI::Observer implementation. | 51 // ExtensionActionAPI::Observer implementation. |
| 52 virtual void OnExtensionActionUpdated( | 52 virtual void OnExtensionActionUpdated( |
| 53 ExtensionAction* extension_action, | 53 ExtensionAction* extension_action, |
| 54 content::WebContents* web_contents, | 54 content::WebContents* web_contents, |
| 55 content::BrowserContext* browser_context) OVERRIDE; | 55 content::BrowserContext* browser_context) override; |
| 56 | 56 |
| 57 // Causes a call to OnStatusIconClicked for the specified extension_id. | 57 // Causes a call to OnStatusIconClicked for the specified extension_id. |
| 58 // Returns false if no ExtensionIndicatorIcon is found for the extension. | 58 // Returns false if no ExtensionIndicatorIcon is found for the extension. |
| 59 bool SendClickEventToExtensionForTest(const std::string extension_id); | 59 bool SendClickEventToExtensionForTest(const std::string extension_id); |
| 60 | 60 |
| 61 // Causes an indicator to be shown for the given extension_action. Creates | 61 // Causes an indicator to be shown for the given extension_action. Creates |
| 62 // the indicator if necessary. | 62 // the indicator if necessary. |
| 63 void CreateOrUpdateIndicator( | 63 void CreateOrUpdateIndicator( |
| 64 const Extension* extension, | 64 const Extension* extension, |
| 65 const ExtensionAction* extension_action); | 65 const ExtensionAction* extension_action); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 81 // Listen to extension unloaded notifications. | 81 // Listen to extension unloaded notifications. |
| 82 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | 82 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> |
| 83 extension_registry_observer_; | 83 extension_registry_observer_; |
| 84 | 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(SystemIndicatorManager); | 85 DISALLOW_COPY_AND_ASSIGN(SystemIndicatorManager); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace extensions | 88 } // namespace extensions |
| 89 | 89 |
| 90 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAG
ER_H_ | 90 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAG
ER_H_ |
| OLD | NEW |