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

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

Issue 7189029: Implement an initial extension settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Make clang happy Created 9 years, 4 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.h
diff --git a/chrome/browser/extensions/extension_settings_noop_storage.h b/chrome/browser/extensions/extension_settings_noop_storage.h
new file mode 100644
index 0000000000000000000000000000000000000000..2112991de624dd1217063ad994077bd99b1589fa
--- /dev/null
+++ b/chrome/browser/extensions/extension_settings_noop_storage.h
@@ -0,0 +1,34 @@
+// 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_NOOP_STORAGE_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_NOOP_STORAGE_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "chrome/browser/extensions/extension_settings_storage.h"
+
+// Implementation of ExtensionSettingsStorage which does nothing, but behaves
+// as though each Get/Set were successful.
+// Intended to be wrapped by a Cache for trivial in-memory storage.
+class ExtensionSettingsNoopStorage : public ExtensionSettingsStorage {
+ public:
+ ExtensionSettingsNoopStorage() {}
+
+ virtual void DeleteSoon() OVERRIDE;
+ virtual void Get(const std::string& key, Callback* callback) OVERRIDE;
+ virtual void Get(const ListValue& keys, Callback* callback) OVERRIDE;
+ virtual void Get(Callback* callback) OVERRIDE;
+ virtual void Set(
+ const std::string& key, const Value& value, Callback* callback) OVERRIDE;
+ virtual void Set(const DictionaryValue& values, Callback* callback) OVERRIDE;
+ virtual void Remove(const std::string& key, Callback* callback) OVERRIDE;
+ virtual void Remove(const ListValue& keys, Callback* callback) OVERRIDE;
+ virtual void Clear(Callback *callback) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ExtensionSettingsNoopStorage);
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_NOOP_STORAGE_H_

Powered by Google App Engine
This is Rietveld 408576698