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

Unified Diff: content/common/indexed_db/indexed_db_messages.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
Index: content/common/indexed_db/indexed_db_messages.h
diff --git a/content/common/indexed_db/indexed_db_messages.h b/content/common/indexed_db/indexed_db_messages.h
index 3fb953339766fa90139aecec033dba88cc833e6c..047fd0ce488c851c7d819e3ce8b61e00c5d63744 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -45,7 +45,7 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryOpen_Params)
// The string id of the origin doing the initiating.
IPC_STRUCT_MEMBER(std::string, database_identifier)
// The name of the database.
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
// The transaction id used if a database upgrade is needed.
IPC_STRUCT_MEMBER(int64, transaction_id)
// The requested version of the database.
@@ -60,7 +60,7 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryDeleteDatabase_Params)
// The string id of the origin doing the initiating.
IPC_STRUCT_MEMBER(std::string, database_identifier)
// The name of the database.
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseCreateTransaction_Params)
@@ -86,7 +86,7 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseCreateObjectStore_Params)
// The storage id of the object store.
IPC_STRUCT_MEMBER(int64, object_store_id)
// The name of the object store.
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
// The keyPath of the object store.
IPC_STRUCT_MEMBER(content::IndexedDBKeyPath, key_path)
// Whether the object store created should have a key generator.
@@ -219,7 +219,7 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseCreateIndex_Params)
// The storage id of the index.
IPC_STRUCT_MEMBER(int64, index_id)
// The name of the index.
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
// The keyPath of the index.
IPC_STRUCT_MEMBER(content::IndexedDBKeyPath, key_path)
// Whether the index created has unique keys.
@@ -257,7 +257,7 @@ IPC_STRUCT_END()
IPC_STRUCT_BEGIN(IndexedDBIndexMetadata)
IPC_STRUCT_MEMBER(int64, id)
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
IPC_STRUCT_MEMBER(content::IndexedDBKeyPath, keyPath)
IPC_STRUCT_MEMBER(bool, unique)
IPC_STRUCT_MEMBER(bool, multiEntry)
@@ -265,7 +265,7 @@ IPC_STRUCT_END()
IPC_STRUCT_BEGIN(IndexedDBObjectStoreMetadata)
IPC_STRUCT_MEMBER(int64, id)
- IPC_STRUCT_MEMBER(string16, name)
+ IPC_STRUCT_MEMBER(base::string16, name)
IPC_STRUCT_MEMBER(content::IndexedDBKeyPath, keyPath)
IPC_STRUCT_MEMBER(bool, autoIncrement)
IPC_STRUCT_MEMBER(int64, max_index_id)
@@ -274,8 +274,8 @@ IPC_STRUCT_END()
IPC_STRUCT_BEGIN(IndexedDBDatabaseMetadata)
IPC_STRUCT_MEMBER(int64, id)
- IPC_STRUCT_MEMBER(string16, name)
- IPC_STRUCT_MEMBER(string16, version)
+ IPC_STRUCT_MEMBER(base::string16, name)
+ IPC_STRUCT_MEMBER(base::string16, version)
IPC_STRUCT_MEMBER(int64, int_version)
IPC_STRUCT_MEMBER(int64, max_object_store_id)
IPC_STRUCT_MEMBER(std::vector<IndexedDBObjectStoreMetadata>, object_stores)
@@ -341,12 +341,12 @@ IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksSuccessUndefined,
IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList,
int32 /* ipc_thread_id */,
int32 /* ipc_callbacks_id */,
- std::vector<string16> /* dom_string_list */)
+ std::vector<base::string16> /* dom_string_list */)
IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksError,
int32 /* ipc_thread_id */,
int32 /* ipc_callbacks_id */,
int /* code */,
- string16 /* message */)
+ base::string16 /* message */)
IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksBlocked,
int32 /* ipc_thread_id */,
int32 /* ipc_callbacks_id */)
@@ -371,7 +371,7 @@ IPC_MESSAGE_CONTROL5(IndexedDBMsg_DatabaseCallbacksAbort,
int32, /* ipc_database_callbacks_id */
int64, /* transaction_id */
int, /* code */
- string16) /* message */
+ base::string16) /* message */
IPC_MESSAGE_CONTROL3(IndexedDBMsg_DatabaseCallbacksComplete,
int32, /* ipc_thread_id */
int32, /* ipc_database_callbacks_id */
« no previous file with comments | « content/common/indexed_db/indexed_db_key_unittest.cc ('k') | content/common/indexed_db/indexed_db_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698