| OLD | NEW |
| 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 "extensions/browser/extension_registry_factory.h" | 8 #include "extensions/browser/extension_registry_factory.h" |
| 9 #include "extensions/browser/extension_registry_observer.h" | 9 #include "extensions/browser/extension_registry_observer.h" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 installed_extensions->InsertAll(disabled_extensions_); | 33 installed_extensions->InsertAll(disabled_extensions_); |
| 34 if (include_mask & IncludeFlag::TERMINATED) | 34 if (include_mask & IncludeFlag::TERMINATED) |
| 35 installed_extensions->InsertAll(terminated_extensions_); | 35 installed_extensions->InsertAll(terminated_extensions_); |
| 36 if (include_mask & IncludeFlag::BLACKLISTED) | 36 if (include_mask & IncludeFlag::BLACKLISTED) |
| 37 installed_extensions->InsertAll(blacklisted_extensions_); | 37 installed_extensions->InsertAll(blacklisted_extensions_); |
| 38 if (include_mask & IncludeFlag::BLOCKED) | 38 if (include_mask & IncludeFlag::BLOCKED) |
| 39 installed_extensions->InsertAll(blocked_extensions_); | 39 installed_extensions->InsertAll(blocked_extensions_); |
| 40 return installed_extensions; | 40 return installed_extensions; |
| 41 } | 41 } |
| 42 | 42 |
| 43 base::Version ExtensionRegistry::GetStoredVersion( |
| 44 const Extension* extension) const { |
| 45 // TODO(lazyboy): Why not TERMINATED? https://crbug.com/724563. |
| 46 int include_mask = ExtensionRegistry::ENABLED | ExtensionRegistry::DISABLED | |
| 47 ExtensionRegistry::BLACKLISTED | |
| 48 ExtensionRegistry::BLOCKED; |
| 49 const Extension* registry_extension = |
| 50 GetExtensionById(extension->id(), include_mask); |
| 51 return registry_extension ? *registry_extension->version() : base::Version(); |
| 52 } |
| 53 |
| 43 void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) { | 54 void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) { |
| 44 observers_.AddObserver(observer); | 55 observers_.AddObserver(observer); |
| 45 } | 56 } |
| 46 | 57 |
| 47 void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) { | 58 void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) { |
| 48 observers_.RemoveObserver(observer); | 59 observers_.RemoveObserver(observer); |
| 49 } | 60 } |
| 50 | 61 |
| 51 void ExtensionRegistry::TriggerOnLoaded(const Extension* extension) { | 62 void ExtensionRegistry::TriggerOnLoaded(const Extension* extension) { |
| 52 CHECK(extension); | 63 CHECK(extension); |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 } | 213 } |
| 203 | 214 |
| 204 void ExtensionRegistry::Shutdown() { | 215 void ExtensionRegistry::Shutdown() { |
| 205 // Release references to all Extension objects in the sets. | 216 // Release references to all Extension objects in the sets. |
| 206 ClearAll(); | 217 ClearAll(); |
| 207 for (auto& observer : observers_) | 218 for (auto& observer : observers_) |
| 208 observer.OnShutdown(this); | 219 observer.OnShutdown(this); |
| 209 } | 220 } |
| 210 | 221 |
| 211 } // namespace extensions | 222 } // namespace extensions |
| OLD | NEW |