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

Unified Diff: content/child/indexed_db/indexed_db_dispatcher.h

Issue 18075008: IndexedDB: Switch key/value handling from vector<char> to std::string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove C++11ism Created 7 years, 5 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/child/indexed_db/indexed_db_dispatcher.h
diff --git a/content/child/indexed_db/indexed_db_dispatcher.h b/content/child/indexed_db/indexed_db_dispatcher.h
index 8786ea599b3a6bd7128edcea01ee5ddf49b4742c..686461f00732c727aaab95f28fd3c16880d497f2 100644
--- a/content/child/indexed_db/indexed_db_dispatcher.h
+++ b/content/child/indexed_db/indexed_db_dispatcher.h
@@ -194,10 +194,10 @@ class CONTENT_EXPORT IndexedDBDispatcher
const std::vector<string16>& value);
void OnSuccessValue(int32 ipc_thread_id,
int32 ipc_callbacks_id,
- const std::vector<char>& value);
+ const std::string& value);
void OnSuccessValueWithKey(int32 ipc_thread_id,
int32 ipc_callbacks_id,
- const std::vector<char>& value,
+ const std::string& value,
const IndexedDBKey& primary_key,
const IndexedDBKeyPath& key_path);
void OnSuccessInteger(int32 ipc_thread_id,
« no previous file with comments | « content/browser/indexed_db/leveldb/leveldb_write_batch.cc ('k') | content/child/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698