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

Unified Diff: content/common/message_port_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/mac/font_descriptor.mm ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/message_port_messages.h
diff --git a/content/common/message_port_messages.h b/content/common/message_port_messages.h
index 67b729dae4d1dbfdebab3e9585041458b3bea8fc..4269ade839e231c86c81ef2fd7acf6ea5655dae2 100644
--- a/content/common/message_port_messages.h
+++ b/content/common/message_port_messages.h
@@ -25,7 +25,7 @@
#ifndef CONTENT_COMMON_MESSAGE_PORT_MESSAGES_H_
#define CONTENT_COMMON_MESSAGE_PORT_MESSAGES_H_
-typedef std::pair<string16, std::vector<int> > QueuedMessage;
+typedef std::pair<base::string16, std::vector<int> > QueuedMessage;
#endif // CONTENT_COMMON_MESSAGE_PORT_MESSAGES_H_
@@ -35,7 +35,7 @@ typedef std::pair<string16, std::vector<int> > QueuedMessage;
// Sends a message to a message port.
IPC_MESSAGE_ROUTED3(MessagePortMsg_Message,
- string16 /* message */,
+ base::string16 /* message */,
std::vector<int> /* sent_message_port_ids */,
std::vector<int> /* new_routing_ids */)
@@ -62,7 +62,7 @@ IPC_MESSAGE_CONTROL1(MessagePortHostMsg_DestroyMessagePort,
// as well if sent_message_port_id != MSG_ROUTING_NONE.
IPC_MESSAGE_CONTROL3(MessagePortHostMsg_PostMessage,
int /* sender_message_port_id */,
- string16 /* message */,
+ base::string16 /* message */,
std::vector<int> /* sent_message_port_ids */)
// Causes messages sent to the remote port to be delivered to this local port.
« no previous file with comments | « content/common/mac/font_descriptor.mm ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698