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

Side by Side Diff: chrome/browser/extensions/api/system_indicator/system_indicator_manager.h

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (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 unified diff | Download patch
OLDNEW
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 28 matching lines...) Expand all
39 39
40 // KeyedService implementation. 40 // KeyedService implementation.
41 void Shutdown() override; 41 void Shutdown() override;
42 42
43 private: 43 private:
44 FRIEND_TEST_ALL_PREFIXES(::SystemIndicatorApiTest, SystemIndicator); 44 FRIEND_TEST_ALL_PREFIXES(::SystemIndicatorApiTest, SystemIndicator);
45 45
46 // ExtensionRegistryObserver implementation. 46 // ExtensionRegistryObserver implementation.
47 void OnExtensionUnloaded(content::BrowserContext* browser_context, 47 void OnExtensionUnloaded(content::BrowserContext* browser_context,
48 const Extension* extension, 48 const Extension* extension,
49 UnloadedExtensionInfo::Reason reason) override; 49 UnloadedExtensionReason reason) override;
50 50
51 // ExtensionActionAPI::Observer implementation. 51 // ExtensionActionAPI::Observer implementation.
52 void OnExtensionActionUpdated( 52 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);
(...skipping 21 matching lines...) Expand all
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698