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

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

Issue 10041014: IndexedDB: API rename to allow return type of keyPath accessors to change (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unneeded includes, added TODOs Created 8 years, 8 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
« no previous file with comments | « no previous file | content/common/indexed_db/proxy_webidbindex_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
index 38f94fa714fe58301fa3bf6b9e8dff83c893b2a2..2199b27fe94015e590310cd04e6b0bc8f289db94 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
@@ -532,7 +532,7 @@ void IndexedDBDispatcherHost::IndexDispatcherHost::OnStoreName(
void IndexedDBDispatcherHost::IndexDispatcherHost::OnKeyPath(
int32 object_id, NullableString16* key_path) {
parent_->SyncGetter<NullableString16>(
- &map_, object_id, key_path, &WebIDBIndex::keyPath);
+ &map_, object_id, key_path, &WebIDBIndex::keyPathString);
}
void IndexedDBDispatcherHost::IndexDispatcherHost::OnUnique(
@@ -710,7 +710,7 @@ void IndexedDBDispatcherHost::ObjectStoreDispatcherHost::OnName(
void IndexedDBDispatcherHost::ObjectStoreDispatcherHost::OnKeyPath(
int32 object_id, NullableString16* keyPath) {
parent_->SyncGetter<NullableString16>(
- &map_, object_id, keyPath, &WebIDBObjectStore::keyPath);
+ &map_, object_id, keyPath, &WebIDBObjectStore::keyPathString);
}
void IndexedDBDispatcherHost::ObjectStoreDispatcherHost::OnIndexNames(
« no previous file with comments | « no previous file | content/common/indexed_db/proxy_webidbindex_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698