| 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 cf56fefaad42f0dc190257f6f12c7bead8b760bc..86f51fec73dd9187765012eeb5b4065ddc84a491 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(
|
| @@ -205,7 +205,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,
|
|
|