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

Unified Diff: extensions/browser/runtime_data.cc

Issue 131743021: app_shell: Extract extension runtime data from ExtensionService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only use OnUnloaded (runtime_data) Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/runtime_data.cc
diff --git a/extensions/browser/runtime_data.cc b/extensions/browser/runtime_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..217d999e62633981a94759c753a0febeac797883
--- /dev/null
+++ b/extensions/browser/runtime_data.cc
@@ -0,0 +1,76 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "extensions/browser/runtime_data.h"
+
+#include "extensions/browser/extension_registry.h"
+#include "extensions/common/extension.h"
+#include "extensions/common/manifest_handlers/background_info.h"
+
+namespace extensions {
+
+RuntimeData::RuntimeData(ExtensionRegistry* registry) : registry_(registry) {
+ registry_->AddObserver(this);
+}
+
+RuntimeData::~RuntimeData() {
+ registry_->RemoveObserver(this);
+}
+
+bool RuntimeData::IsBackgroundPageReady(const Extension* extension) const {
+ if (!BackgroundInfo::HasPersistentBackgroundPage(extension))
+ return true;
+ return HasFlag(extension, BACKGROUND_PAGE_READY);
+}
+
+void RuntimeData::SetBackgroundPageReady(const Extension* extension,
+ bool value) {
+ SetFlag(extension, BACKGROUND_PAGE_READY, value);
+}
+
+bool RuntimeData::IsBeingUpgraded(const Extension* extension) const {
+ return HasFlag(extension, BEING_UPGRADED);
+}
+
+void RuntimeData::SetBeingUpgraded(const Extension* extension, bool value) {
+ SetFlag(extension, BEING_UPGRADED, value);
+}
+
+bool RuntimeData::HasUsedWebRequest(const Extension* extension) const {
+ return HasFlag(extension, HAS_USED_WEBREQUEST);
+}
+
+void RuntimeData::SetHasUsedWebRequest(const Extension* extension, bool value) {
+ SetFlag(extension, HAS_USED_WEBREQUEST, value);
+}
+
+bool RuntimeData::HasExtensionForTesting(const Extension* extension) const {
+ return extension_flags_.find(extension->id()) != extension_flags_.end();
+}
+
+void RuntimeData::ClearAll() {
+ extension_flags_.clear();
+}
+
+void RuntimeData::OnExtensionUnloaded(const Extension* extension) {
+ extension_flags_.erase(extension->id());
+}
+
+bool RuntimeData::HasFlag(const Extension* extension, RuntimeFlag flag) const {
+ ExtensionFlagsMap::const_iterator it = extension_flags_.find(extension->id());
+ if (it == extension_flags_.end())
+ return false;
+ return static_cast<bool>(it->second & flag);
+}
+
+void RuntimeData::SetFlag(const Extension* extension,
+ RuntimeFlag flag,
+ bool value) {
+ if (value)
+ extension_flags_[extension->id()] |= flag;
+ else
+ extension_flags_[extension->id()] &= ~flag;
+}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698