| 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 EXTENSIONS_BROWSER_WARNING_SERVICE_H_ | 5 #ifndef EXTENSIONS_BROWSER_WARNING_SERVICE_H_ |
| 6 #define EXTENSIONS_BROWSER_WARNING_SERVICE_H_ | 6 #define EXTENSIONS_BROWSER_WARNING_SERVICE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 // Currently existing warnings. | 86 // Currently existing warnings. |
| 87 WarningSet warnings_; | 87 WarningSet warnings_; |
| 88 | 88 |
| 89 content::BrowserContext* const browser_context_; | 89 content::BrowserContext* const browser_context_; |
| 90 | 90 |
| 91 // Listen to extension unloaded notifications. | 91 // Listen to extension unloaded notifications. |
| 92 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | 92 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> |
| 93 extension_registry_observer_; | 93 extension_registry_observer_; |
| 94 | 94 |
| 95 ObserverList<Observer> observer_list_; | 95 base::ObserverList<Observer> observer_list_; |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 } // namespace extensions | 98 } // namespace extensions |
| 99 | 99 |
| 100 #endif // EXTENSIONS_BROWSER_WARNING_SERVICE_H_ | 100 #endif // EXTENSIONS_BROWSER_WARNING_SERVICE_H_ |
| OLD | NEW |