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

Unified Diff: chrome/browser/extensions/settings/value_store_cache.h

Issue 10784035: Refactored SettingsFrontend and forwarding of calls to the backends. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comment Created 8 years, 5 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/settings/value_store_cache.h
diff --git a/chrome/browser/extensions/settings/value_store_cache.h b/chrome/browser/extensions/settings/value_store_cache.h
new file mode 100644
index 0000000000000000000000000000000000000000..a891db9a186de59f4e2c571049fa5367422f4956
--- /dev/null
+++ b/chrome/browser/extensions/settings/value_store_cache.h
@@ -0,0 +1,49 @@
+// Copyright (c) 2012 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_SETTINGS_VALUE_STORE_CACHE_H_
+#define CHROME_BROWSER_EXTENSIONS_SETTINGS_VALUE_STORE_CACHE_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/message_loop_proxy.h"
+
+class ValueStore;
+
+namespace extensions {
+
+class Extension;
+
+// Each namespace of the storage API implements this interface.
+// Instances are created on the UI thread, but from then on live on the loop
+// returned by GetMessageLoop() and every methods (except GetMessageLoop())
+// are always called in that loop, including the destructor.
+class ValueStoreCache {
+ public:
+ typedef base::Callback<void(ValueStore*)> StorageCallback;
+
+ virtual ~ValueStoreCache();
+
+ // Returns the loop that the methods of this class should be invoked on.
+ virtual scoped_refptr<base::MessageLoopProxy> GetMessageLoop() const = 0;
+
+ // Requests the cache to invoke |callback| with the appropriate ValueStore
+ // for the given |extension|. |callback| should be invoked with a NULL
+ // ValueStore in case of errors.
+ // |extension| is passed in a scoped_refptr<> because this method is
+ // asynchronously posted as a task to the loop returned by GetMessageLoop(),
+ // and this guarantees the Extension is still valid when the method executes.
+ virtual void RunWithValueStoreForExtension(
+ const StorageCallback& callback,
+ scoped_refptr<const Extension> extension) = 0;
+
+ // Requests the cache to delete any storage used by |extension_id|.
+ virtual void DeleteStorageSoon(const std::string& extension_id) = 0;
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_VALUE_STORE_CACHE_H_

Powered by Google App Engine
This is Rietveld 408576698