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

Unified Diff: content/browser/in_process_webkit/dom_storage_context_impl.h

Issue 9704048: Make the content::DOMStorageContext methods callable on the main thread and hide the threading deta… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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: content/browser/in_process_webkit/dom_storage_context_impl.h
===================================================================
--- content/browser/in_process_webkit/dom_storage_context_impl.h (revision 126737)
+++ content/browser/in_process_webkit/dom_storage_context_impl.h (working copy)
@@ -12,6 +12,7 @@
#include "base/compiler_specific.h"
#include "base/file_path.h"
#include "base/gtest_prod_util.h"
+#include "base/memory/ref_counted.h"
#include "base/time.h"
#include "content/public/browser/dom_storage_context.h"
@@ -34,7 +35,8 @@
// and in StorageNamespace and StorageArea. Everything is only to be accessed
// on the WebKit thread unless noted otherwise.
class CONTENT_EXPORT DOMStorageContextImpl :
- NON_EXPORTED_BASE(public content::DOMStorageContext) {
+ NON_EXPORTED_BASE(public content::DOMStorageContext),
+ public base::RefCountedThreadSafe<DOMStorageContextImpl> {
public:
// If |data_path| is empty, nothing will be saved to disk.
DOMStorageContextImpl(const FilePath& data_path,
@@ -42,8 +44,7 @@
virtual ~DOMStorageContextImpl();
// DOMStorageContext implementation:
- virtual base::SequencedTaskRunner* task_runner() const OVERRIDE;
- virtual std::vector<FilePath> GetAllStorageFiles() OVERRIDE;
+ virtual void GetAllStorageFiles(GetAllStorageFilesCallback callback) OVERRIDE;
virtual FilePath GetFilePath(const string16& origin_id) const OVERRIDE;
virtual void DeleteForOrigin(const string16& origin_id) OVERRIDE;
virtual void DeleteLocalStorageFile(const FilePath& file_path) OVERRIDE;
@@ -126,6 +127,9 @@
// The WebKit thread half of CloneSessionStorage above.
void CompleteCloningSessionStorage(int64 existing_id, int64 clone_id);
+ void RunAllStorageFilesCallback(
+ const std::vector<FilePath>& files, GetAllStorageFilesCallback callback);
+
// The last used storage_area_id and storage_namespace_id's. For the storage
// namespaces, IDs allocated on the UI thread are positive and count up while
// IDs allocated on the IO thread are negative and count down. This allows us

Powered by Google App Engine
This is Rietveld 408576698