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 c22ac1c83d1989186c9632f2d6dcc4252bc06cd7..04106fbcad29a120e6949492873d5ff099520f94 100644 |
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h |
@@ -16,8 +16,8 @@ |
class GURL; |
class IndexedDBContextImpl; |
class IndexedDBKey; |
+class IndexedDBKeyPath; |
class IndexedDBKeyRange; |
-class NullableString16; |
struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; |
struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; |
struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params; |
@@ -156,7 +156,7 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter { |
void OnName(int32 idb_index_id, string16* name); |
void OnStoreName(int32 idb_index_id, string16* store_name); |
- void OnKeyPath(int32 idb_index_id, NullableString16* key_path); |
+ void OnKeyPath(int32 idb_index_id, IndexedDBKeyPath* key_path); |
void OnUnique(int32 idb_index_id, bool* unique); |
void OnMultiEntry(int32 idb_index_id, bool* multi_entry); |
void OnOpenObjectCursor( |
@@ -193,7 +193,7 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter { |
void Send(IPC::Message* message); |
void OnName(int32 idb_object_store_id, string16* name); |
- void OnKeyPath(int32 idb_object_store_id, NullableString16* keyPath); |
+ void OnKeyPath(int32 idb_object_store_id, IndexedDBKeyPath* keyPath); |
void OnIndexNames(int32 idb_object_store_id, |
std::vector<string16>* index_names); |
void OnGet(int idb_object_store_id, |