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

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

Issue 7889024: Implementation of IDBFactory::getDatabaseNames (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 3 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/indexed_db_dispatcher_host.h
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
index ae77824b9b2a236710d91d360f078ad55be94d41..ed5330446f614d5e6bb3f3221bd1ee28a3d3eb90 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
@@ -16,6 +16,7 @@ class IndexedDBKey;
class NullableString16;
class SerializedScriptValue;
struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params;
+struct IndexedDBHostMsg_FactoryDatabaseNames_Params;
struct IndexedDBHostMsg_FactoryDeleteDatabase_Params;
struct IndexedDBHostMsg_FactoryOpen_Params;
struct IndexedDBHostMsg_IndexOpenCursor_Params;
@@ -64,6 +65,9 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
// Message processing. Most of the work is delegated to the dispatcher hosts
// below.
+ void OnIDBFactoryDatabaseNames(
+ const IndexedDBHostMsg_FactoryDatabaseNames_Params& p,
+ std::vector<string16>* database_names);
void OnIDBFactoryOpen(const IndexedDBHostMsg_FactoryOpen_Params& p);
void OnIDBFactoryDeleteDatabase(

Powered by Google App Engine
This is Rietveld 408576698