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); |