app_shell: Extract extension runtime data from ExtensionService

This allows ExtensionHost to use the data when there is no ExtensionService, such as when running app_shell.

BUG=332982
TEST=Added unit test, existing extensions browser tests
[email protected] for mechanical change to chrome/browser/ui/views/

Review URL: https://codereview.chromium.org/131743021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246449 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/extensions/browser/runtime_data.cc b/extensions/browser/runtime_data.cc
new file mode 100644
index 0000000..a3b1c6c4
--- /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 !!(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