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

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

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
« no previous file with comments | « content/child/db_message_filter.cc ('k') | content/child/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6d60e29665b7a09861e6957e0aa2cc4cfdccdd87..a9f365308209fe102b696a3f8d68341cc0bee524 100644
--- a/content/child/indexed_db/indexed_db_dispatcher.h
+++ b/content/child/indexed_db/indexed_db_dispatcher.h
@@ -71,14 +71,14 @@ class CONTENT_EXPORT IndexedDBDispatcher
const std::string& database_identifier);
void RequestIDBFactoryOpen(
- const string16& name,
+ const base::string16& name,
int64 version,
int64 transaction_id,
blink::WebIDBCallbacks* callbacks,
blink::WebIDBDatabaseCallbacks* database_callbacks,
const std::string& database_identifier);
- void RequestIDBFactoryDeleteDatabase(const string16& name,
+ void RequestIDBFactoryDeleteDatabase(const base::string16& name,
blink::WebIDBCallbacks* callbacks,
const std::string& database_identifier);
@@ -192,7 +192,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
const IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params& p);
void OnSuccessStringList(int32 ipc_thread_id,
int32 ipc_callbacks_id,
- const std::vector<string16>& value);
+ const std::vector<base::string16>& value);
void OnSuccessValue(int32 ipc_thread_id,
int32 ipc_callbacks_id,
const std::string& value);
@@ -208,7 +208,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
void OnError(int32 ipc_thread_id,
int32 ipc_callbacks_id,
int code,
- const string16& message);
+ const base::string16& message);
void OnIntBlocked(int32 ipc_thread_id,
int32 ipc_callbacks_id,
int64 existing_version);
@@ -217,7 +217,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
int32 ipc_database_id,
int64 transaction_id,
int code,
- const string16& message);
+ const base::string16& message);
void OnComplete(int32 ipc_thread_id,
int32 ipc_database_id,
int64 transaction_id);
« no previous file with comments | « content/child/db_message_filter.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