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

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: Use base::Closure for storage callback, style fixes, mac/windows fixes 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..57f11afd126defbdbfad501b24ab156910fea338
--- /dev/null
+++ b/chrome/browser/extensions/extension_settings_noop_storage.cc
@@ -0,0 +1,89 @@
+// 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/memory/scoped_ptr.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 {
Matt Perry 2011/06/23 19:14:11 it seems like a closure class is unnecessary here.
Matt Perry 2011/06/23 19:14:11 btw, in general, your use of closures is not a com
not at google - send to devlin 2011/06/27 08:51:02 Done. Yeah it all came from me not realising how
+ public:
+ // Ownership of callback is taken.
+ SuccessResultClosure(
+ ExtensionSettingsStorage::Callback* callback, DictionaryValue* settings)
+ : callback_(callback), settings_(settings) {
+ }
+
+ ~SuccessResultClosure() {}
+
+ void Run() {
+ MessageLoop::current()->PostTask(
+ FROM_HERE,
+ base::Bind(&SuccessResultClosure::Run2, base::Unretained(this)));
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SuccessResultClosure);
+
+ void Run2() {
+ callback_->OnSuccess(settings_);
+ delete this;
+ }
+
+ scoped_ptr<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