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

Unified Diff: chrome/browser/extensions/extension_settings_noop_storage.cc

Issue 7189029: Implement an initial extension settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: dgrogan comments #2, mihai comments #1 Created 9 years, 6 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: chrome/browser/extensions/extension_settings_noop_storage.cc
diff --git a/chrome/browser/extensions/extension_settings_noop_storage.cc b/chrome/browser/extensions/extension_settings_noop_storage.cc
new file mode 100644
index 0000000000000000000000000000000000000000..88f783e01c132ac3a2c5bf41dc1ab4b8a3ba26a4
--- /dev/null
+++ b/chrome/browser/extensions/extension_settings_noop_storage.cc
@@ -0,0 +1,82 @@
+// Copyright (c) 2011 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 "chrome/browser/extensions/extension_settings_noop_storage.h"
+
+#include "base/bind.h"
+#include "base/message_loop.h"
+#include "base/task.h"
+
+namespace {
+
+// Calls OnSuccess() of a callback with settings, after posting back to the UI
+// thread.
+class SuccessResultClosure {
+ public:
+ SuccessResultClosure(ExtensionSettingsStorage::Callback* callback,
+ DictionaryValue* settings) : callback_(callback), settings_(settings) {
+ }
+
+ ~SuccessResultClosure() {
+ delete callback_;
+ }
+
+ void Run() {
+ MessageLoop::current()->PostTask(FROM_HERE,
+ base::Bind(&SuccessResultClosure::Run2, base::Unretained(this)));
+ }
+
+ private:
+ void Run2() {
+ callback_->OnSuccess(settings_);
+ delete this;
+ }
+
+ ExtensionSettingsStorage::Callback* callback_;
+ DictionaryValue* settings_;
+};
+
+} // namespace
+
+void ExtensionSettingsNoopStorage::Get(const std::string& key,
+ ExtensionSettingsStorage::Callback* callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Get(const ListValue& keys,
+ ExtensionSettingsStorage::Callback* callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Get(
+ ExtensionSettingsStorage::Callback* callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Set(const std::string& key,
+ const Value& value, ExtensionSettingsStorage::Callback* callback) {
+ DictionaryValue* settings = new DictionaryValue();
+ settings->Set(key, value.DeepCopy());
+ (new SuccessResultClosure(callback, settings))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Set(const DictionaryValue& values,
+ ExtensionSettingsStorage::Callback* callback) {
+ (new SuccessResultClosure(callback, values.DeepCopy()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Remove(const std::string& key,
+ ExtensionSettingsStorage::Callback *callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Remove(const ListValue& keys,
+ ExtensionSettingsStorage::Callback *callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}
+
+void ExtensionSettingsNoopStorage::Clear(
+ ExtensionSettingsStorage::Callback* callback) {
+ (new SuccessResultClosure(callback, new DictionaryValue()))->Run();
+}

Powered by Google App Engine
This is Rietveld 408576698