OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef EXTENSIONS_BROWSER_EXTENSION_REGISTRY_OBSERVER_H_ | |
6 #define EXTENSIONS_BROWSER_EXTENSION_REGISTRY_OBSERVER_H_ | |
7 | |
8 namespace extensions { | |
9 | |
10 class Extension; | |
11 | |
12 // Observer for ExtensionRegistry. Exists in a separate header file to reduce | |
13 // the include file burden for typical clients of ExtensionRegistry. | |
14 class ExtensionRegistryObserver { | |
15 public: | |
16 virtual ~ExtensionRegistryObserver() {} | |
17 | |
18 // Called after an extension is unloaded. The extension no longer exists in | |
19 // any of the ExtensionRegistry sets (enabled, disabled, etc.). | |
20 virtual void OnExtensionUnloaded(const Extension* extension) = 0; | |
not at google - send to devlin
2014/01/22 16:17:43
I can imagine this interface getting a few times b
James Cook
2014/01/22 17:41:52
Sure, I'll do that. I've seen both patterns for i
| |
21 | |
22 // Called after an extension is disabled. The extension exists in the | |
23 // ExtensionRegistry disabled set when this function is called. | |
24 virtual void OnExtensionDisabled(const Extension* extension) = 0; | |
not at google - send to devlin
2014/01/22 16:17:43
see comment in ExtensionRegistry about a giant war
| |
25 }; | |
26 | |
27 } | |
28 | |
29 #endif // EXTENSIONS_BROWSER_EXTENSION_REGISTRY_OBSERVER_H_ | |
OLD | NEW |