| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "base/scoped_observer.h" | 6 #include "base/scoped_observer.h" |
| 7 #include "extensions/browser/extension_registry_observer.h" | 7 #include "extensions/browser/extension_registry_observer.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 class BrowserContext; | 10 class BrowserContext; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ~ServiceWorkerManager() override; | 21 ~ServiceWorkerManager() override; |
| 22 | 22 |
| 23 private: | 23 private: |
| 24 // ExtensionRegistryObserver: | 24 // ExtensionRegistryObserver: |
| 25 void OnExtensionUnloaded(content::BrowserContext* browser_context, | 25 void OnExtensionUnloaded(content::BrowserContext* browser_context, |
| 26 const Extension* extension, | 26 const Extension* extension, |
| 27 UnloadedExtensionInfo::Reason reason) override; | 27 UnloadedExtensionInfo::Reason reason) override; |
| 28 void OnExtensionUninstalled(content::BrowserContext* browser_context, | 28 void OnExtensionUninstalled(content::BrowserContext* browser_context, |
| 29 const Extension* extension, | 29 const Extension* extension, |
| 30 extensions::UninstallReason reason) override; | 30 extensions::UninstallReason reason) override; |
| 31 void OnExtensionWillBeInstalled(content::BrowserContext* browser_context, |
| 32 const Extension* extension, |
| 33 bool is_update, |
| 34 bool from_ephemeral, |
| 35 const std::string& old_name) override; |
| 31 | 36 |
| 32 content::BrowserContext* browser_context_; | 37 content::BrowserContext* browser_context_; |
| 33 | 38 |
| 34 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | 39 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> |
| 35 registry_observer_; | 40 registry_observer_; |
| 36 | 41 |
| 37 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerManager); | 42 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerManager); |
| 38 }; | 43 }; |
| 39 | 44 |
| 40 } // namespace extensions | 45 } // namespace extensions |
| OLD | NEW |