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

Side by Side Diff: extensions/browser/service_worker_manager.h

Issue 1432823003: Add a test to cover service worker update codepath when extension is updated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test updated Created 5 years, 1 month 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698