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

Unified Diff: content/browser/indexed_db/indexed_db_internals_ui.h

Issue 17518004: Move IndexedDB from WEBKIT_DEPRECATED to dedicated thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 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: content/browser/indexed_db/indexed_db_internals_ui.h
diff --git a/content/browser/indexed_db/indexed_db_internals_ui.h b/content/browser/indexed_db/indexed_db_internals_ui.h
index 1412ec0ac2df5935f792fce3fbff8f6d448e765b..a07ca70e6c422d1e8aead336bc12d9e8d0b0c562 100644
--- a/content/browser/indexed_db/indexed_db_internals_ui.h
+++ b/content/browser/indexed_db/indexed_db_internals_ui.h
@@ -32,18 +32,16 @@ class IndexedDBInternalsUI : public WebUIController {
private:
typedef std::vector<scoped_refptr<IndexedDBContext> > ContextList;
void GetAllOrigins(const base::ListValue* args);
- void GetAllOriginsOnWebkitThread(
- const scoped_ptr<ContextList> contexts,
- const scoped_ptr<std::vector<base::FilePath> > context_paths);
+ void GetAllOriginsOnIndexedDBThread(
+ scoped_refptr<IndexedDBContext> context,
+ const base::FilePath& context_path);
void OnOriginsReady(scoped_ptr<std::vector<IndexedDBInfo> > origins,
const base::FilePath& path);
- static void AddContextFromStoragePartition(ContextList* contexts,
- std::vector<base::FilePath>* paths,
- StoragePartition* partition);
+ void AddContextFromStoragePartition(StoragePartition* partition);
void DownloadOriginData(const base::ListValue* args);
- void DownloadOriginDataOnWebkitThread(
+ void DownloadOriginDataOnIndexedDBThread(
const base::FilePath& partition_path,
const scoped_refptr<IndexedDBContextImpl> context,
const GURL& origin_url);

Powered by Google App Engine
This is Rietveld 408576698