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

Unified Diff: content/common/dom_storage/dom_storage_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
« no previous file with comments | « content/common/desktop_notification_messages.h ('k') | content/common/font_cache_dispatcher_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/dom_storage/dom_storage_messages.h
diff --git a/content/common/dom_storage/dom_storage_messages.h b/content/common/dom_storage/dom_storage_messages.h
index 5aa96e3dafdddb2ca1c7c310a9d3ece6536ca177..2cf46e17681715cd18b875c787091f0de80eef70 100644
--- a/content/common/dom_storage/dom_storage_messages.h
+++ b/content/common/dom_storage/dom_storage_messages.h
@@ -83,21 +83,21 @@ IPC_SYNC_MESSAGE_CONTROL1_2(DOMStorageHostMsg_LoadStorageArea,
// A completion notification is sent in response.
IPC_MESSAGE_CONTROL4(DOMStorageHostMsg_SetItem,
int /* connection_id */,
- string16 /* key */,
- string16 /* value */,
+ base::string16 /* key */,
+ base::string16 /* value */,
GURL /* page_url */)
// Logs that a get operation was performed on a key/value pair.
IPC_MESSAGE_CONTROL3(DOMStorageHostMsg_LogGetItem,
int /* connection_id */,
- string16 /* key */,
+ base::string16 /* key */,
base::NullableString16 /* value */)
// Remove the value associated with a key in a storage area.
// A completion notification is sent in response.
IPC_MESSAGE_CONTROL3(DOMStorageHostMsg_RemoveItem,
int /* connection_id */,
- string16 /* key */,
+ base::string16 /* key */,
GURL /* page_url */)
// Clear the storage area. A completion notification is sent in response.
« no previous file with comments | « content/common/desktop_notification_messages.h ('k') | content/common/font_cache_dispatcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698