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

Unified Diff: content/common/indexed_db/indexed_db_messages.h

Issue 14156007: Remove WebSecurityOrigin from chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT Created 7 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
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 2d4d4cecd3a05b776366598b74fcb446c727ae34..fa9f9dde72b0e59af1eb1a94937154e3adc42e2e 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -29,8 +29,8 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryGetDatabaseNames_Params)
// The response should have these ids.
IPC_STRUCT_MEMBER(int32, ipc_thread_id)
IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
- // The origin doing the initiating.
- IPC_STRUCT_MEMBER(string16, origin)
+ // The string id of the origin doing the initiating.
+ IPC_STRUCT_MEMBER(string16, database_identifier)
IPC_STRUCT_END()
// Used to open an indexed database.
@@ -41,8 +41,8 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryOpen_Params)
IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
// Identifier for database callbacks
IPC_STRUCT_MEMBER(int32, ipc_database_callbacks_id)
- // The origin doing the initiating.
- IPC_STRUCT_MEMBER(string16, origin)
+ // The string id of the origin doing the initiating.
+ IPC_STRUCT_MEMBER(string16, database_identifier)
// The name of the database.
IPC_STRUCT_MEMBER(string16, name)
// The transaction id used if a database upgrade is needed.
@@ -56,8 +56,8 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryDeleteDatabase_Params)
// The response should have these ids.
IPC_STRUCT_MEMBER(int32, ipc_thread_id)
IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
- // The origin doing the initiating.
- IPC_STRUCT_MEMBER(string16, origin)
+ // The string id of the origin doing the initiating.
+ IPC_STRUCT_MEMBER(string16, database_identifier)
// The name of the database.
IPC_STRUCT_MEMBER(string16, name)
IPC_STRUCT_END()
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | content/common/indexed_db/proxy_webidbfactory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698