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

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

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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.cc
diff --git a/content/child/indexed_db/indexed_db_dispatcher.cc b/content/child/indexed_db/indexed_db_dispatcher.cc
index 2b97b4a8b2f6e1e062ff55bc96eb8a0e52231c50..9fa1d66dabe5556e99b11bd6be272cf80c76dda2 100644
--- a/content/child/indexed_db/indexed_db_dispatcher.cc
+++ b/content/child/indexed_db/indexed_db_dispatcher.cc
@@ -213,7 +213,7 @@ void IndexedDBDispatcher::RequestIDBCursorPrefetchReset(int used_prefetches,
}
void IndexedDBDispatcher::RequestIDBFactoryOpen(
- const string16& name,
+ const base::string16& name,
int64 version,
int64 transaction_id,
WebIDBCallbacks* callbacks_ptr,
@@ -250,7 +250,7 @@ void IndexedDBDispatcher::RequestIDBFactoryGetDatabaseNames(
}
void IndexedDBDispatcher::RequestIDBFactoryDeleteDatabase(
- const string16& name,
+ const base::string16& name,
WebIDBCallbacks* callbacks_ptr,
const std::string& database_identifier) {
ResetCursorPrefetchCaches();
@@ -487,7 +487,7 @@ void IndexedDBDispatcher::OnSuccessIndexedDBKey(int32 ipc_thread_id,
void IndexedDBDispatcher::OnSuccessStringList(
int32 ipc_thread_id,
int32 ipc_callbacks_id,
- const std::vector<string16>& value) {
+ const std::vector<base::string16>& value) {
DCHECK_EQ(ipc_thread_id, CurrentWorkerId());
WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id);
if (!callbacks)
@@ -652,7 +652,7 @@ void IndexedDBDispatcher::OnUpgradeNeeded(
void IndexedDBDispatcher::OnError(int32 ipc_thread_id,
int32 ipc_callbacks_id,
int code,
- const string16& message) {
+ const base::string16& message) {
DCHECK_EQ(ipc_thread_id, CurrentWorkerId());
WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id);
if (!callbacks)
@@ -668,7 +668,7 @@ void IndexedDBDispatcher::OnAbort(int32 ipc_thread_id,
int32 ipc_database_callbacks_id,
int64 transaction_id,
int code,
- const string16& message) {
+ const base::string16& message) {
DCHECK_EQ(ipc_thread_id, CurrentWorkerId());
WebIDBDatabaseCallbacks* callbacks =
pending_database_callbacks_.Lookup(ipc_database_callbacks_id);
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | content/child/indexed_db/indexed_db_key_builders.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698