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

Unified Diff: chrome/browser/extensions/extension_settings_api.h

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_api.h
diff --git a/chrome/browser/extensions/extension_settings_api.h b/chrome/browser/extensions/extension_settings_api.h
new file mode 100644
index 0000000000000000000000000000000000000000..e9c912c66ee8dc30217e569c22bcecd5d7549dd5
--- /dev/null
+++ b/chrome/browser/extensions/extension_settings_api.h
@@ -0,0 +1,88 @@
+// 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.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_API_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_API_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "chrome/browser/extensions/extension_function.h"
+#include "chrome/browser/extensions/extension_settings.h"
+#include "chrome/browser/extensions/extension_settings_storage.h"
+
+// Superclass of all settings functions.
+class SettingsFunction : public AsyncExtensionFunction {
+ public:
+ virtual ~SettingsFunction() {}
+
+ // Extension settings function implementations should do their work here, and
+ // either run a StorageResultCallback or fill the function result / call
+ // SendResponse themselves.
+ // The exception is that implementations can return false to immediately
+ // call SendResponse(false), for compliance with EXTENSION_FUNCTION_VALIDATE.
+ virtual bool RunWithStorage(ExtensionSettingsStorage* storage) = 0;
+
+ virtual bool RunImpl() OVERRIDE;
+
+ protected:
+ // GetStorage() callback to run the given ExtensionFunction's RunWithStorage.
+ // Declared here to access to the protected members of ExtensionFunction.
+ class GetStorageCallback {
+ public:
+ explicit GetStorageCallback(SettingsFunction* settings_function);
+ void Run(ExtensionSettingsStorage* storage);
+
+ private:
+ scoped_refptr<SettingsFunction> settings_function_;
+ };
+
+ // Callback from all storage methods (Get/Set/Remove/Clear) which sets the
+ // appropriate fields of the extension function (result/error) and sends a
+ // response.
+ // Declared here to access to the protected members of ExtensionFunction.
+ class StorageResultCallback : public ExtensionSettingsStorage::Callback {
+ public:
+ explicit StorageResultCallback(SettingsFunction* settings_function);
+ ~StorageResultCallback();
+ virtual void OnSuccess(DictionaryValue* settings) OVERRIDE;
+ virtual void OnFailure(const std::string& message) OVERRIDE;
+
+ private:
+ scoped_refptr<SettingsFunction> settings_function_;
+ };
+};
+
+class GetSettingsFunction : public SettingsFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.settings.get");
+
+ protected:
+ virtual bool RunWithStorage(ExtensionSettingsStorage* storage) OVERRIDE;
+};
+
+class SetSettingsFunction : public SettingsFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.settings.set");
+
+ protected:
+ virtual bool RunWithStorage(ExtensionSettingsStorage* storage) OVERRIDE;
+};
+
+class RemoveSettingsFunction : public SettingsFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.settings.remove");
+
+ protected:
+ virtual bool RunWithStorage(ExtensionSettingsStorage* storage) OVERRIDE;
+};
+
+class ClearSettingsFunction : public SettingsFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.settings.clear");
+
+ protected:
+ virtual bool RunWithStorage(ExtensionSettingsStorage* storage) OVERRIDE;
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_API_H_

Powered by Google App Engine
This is Rietveld 408576698