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

Side by Side Diff: extensions/browser/extension_registry.cc

Issue 2892843002: Remove RuntimeAPIDelegate::GetPreviousVersion. (Closed)
Patch Set: 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
« no previous file with comments | « extensions/browser/extension_registry.h ('k') | extensions/browser/test_runtime_api_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "extensions/browser/extension_registry.h" 5 #include "extensions/browser/extension_registry.h"
6 6
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "base/version.h"
8 #include "extensions/browser/extension_registry_factory.h" 9 #include "extensions/browser/extension_registry_factory.h"
9 #include "extensions/browser/extension_registry_observer.h" 10 #include "extensions/browser/extension_registry_observer.h"
10 11
11 namespace extensions { 12 namespace extensions {
12 13
13 ExtensionRegistry::ExtensionRegistry(content::BrowserContext* browser_context) 14 ExtensionRegistry::ExtensionRegistry(content::BrowserContext* browser_context)
14 : browser_context_(browser_context) {} 15 : browser_context_(browser_context) {}
15 ExtensionRegistry::~ExtensionRegistry() {} 16 ExtensionRegistry::~ExtensionRegistry() {}
16 17
17 // static 18 // static
(...skipping 15 matching lines...) Expand all
33 installed_extensions->InsertAll(disabled_extensions_); 34 installed_extensions->InsertAll(disabled_extensions_);
34 if (include_mask & IncludeFlag::TERMINATED) 35 if (include_mask & IncludeFlag::TERMINATED)
35 installed_extensions->InsertAll(terminated_extensions_); 36 installed_extensions->InsertAll(terminated_extensions_);
36 if (include_mask & IncludeFlag::BLACKLISTED) 37 if (include_mask & IncludeFlag::BLACKLISTED)
37 installed_extensions->InsertAll(blacklisted_extensions_); 38 installed_extensions->InsertAll(blacklisted_extensions_);
38 if (include_mask & IncludeFlag::BLOCKED) 39 if (include_mask & IncludeFlag::BLOCKED)
39 installed_extensions->InsertAll(blocked_extensions_); 40 installed_extensions->InsertAll(blocked_extensions_);
40 return installed_extensions; 41 return installed_extensions;
41 } 42 }
42 43
44 base::Version ExtensionRegistry::GetVersion(const Extension* extension) const {
45 int include_mask = ExtensionRegistry::ENABLED | ExtensionRegistry::DISABLED |
46 ExtensionRegistry::BLACKLISTED |
Devlin 2017/05/19 01:07:09 Why not terminated?
lazyboy 2017/05/19 01:38:48 I don't know, this is copied from ExtensionService
47 ExtensionRegistry::BLOCKED;
48 const Extension* old = GetExtensionById(extension->id(), include_mask);
Devlin 2017/05/19 01:07:09 |old| is no longer accurate
lazyboy 2017/05/19 01:38:48 Renamed.
49 return old ? *old->version() : base::Version();
50 }
51
43 void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) { 52 void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) {
44 observers_.AddObserver(observer); 53 observers_.AddObserver(observer);
45 } 54 }
46 55
47 void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) { 56 void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) {
48 observers_.RemoveObserver(observer); 57 observers_.RemoveObserver(observer);
49 } 58 }
50 59
51 void ExtensionRegistry::TriggerOnLoaded(const Extension* extension) { 60 void ExtensionRegistry::TriggerOnLoaded(const Extension* extension) {
52 CHECK(extension); 61 CHECK(extension);
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 } 211 }
203 212
204 void ExtensionRegistry::Shutdown() { 213 void ExtensionRegistry::Shutdown() {
205 // Release references to all Extension objects in the sets. 214 // Release references to all Extension objects in the sets.
206 ClearAll(); 215 ClearAll();
207 for (auto& observer : observers_) 216 for (auto& observer : observers_)
208 observer.OnShutdown(this); 217 observer.OnShutdown(this);
209 } 218 }
210 219
211 } // namespace extensions 220 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/extension_registry.h ('k') | extensions/browser/test_runtime_api_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698