summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_win.cc
diff options
context:
space:
mode:
authordbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-20 09:04:55 +0000
committerdbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-20 09:04:55 +0000
commit905cda8107a17b368a065bbfbc02b449a66c9feb (patch)
tree59c576fb45e11178826514d8d7c89bf4776cd22d /ipc/ipc_channel_win.cc
parent096d2b8ced438c307520ff7a89c3cf4aa941c4ad (diff)
downloadchromium_src-905cda8107a17b368a065bbfbc02b449a66c9feb.zip
chromium_src-905cda8107a17b368a065bbfbc02b449a66c9feb.tar.gz
chromium_src-905cda8107a17b368a065bbfbc02b449a66c9feb.tar.bz2
Add base:: to string16s in ipc/.
R=tsepez@chromium.org BUG=329295 Review URL: https://codereview.chromium.org/108793005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_win.cc')
-rw-r--r--ipc/ipc_channel_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index 8c08500..802a0a2 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -183,7 +183,7 @@ bool Channel::ChannelImpl::DidEmptyInputBuffers() {
}
// static
-const string16 Channel::ChannelImpl::PipeName(
+const base::string16 Channel::ChannelImpl::PipeName(
const std::string& channel_id, int32* secret) {
std::string name("\\\\.\\pipe\\chrome.");
@@ -204,7 +204,7 @@ const string16 Channel::ChannelImpl::PipeName(
bool Channel::ChannelImpl::CreatePipe(const IPC::ChannelHandle &channel_handle,
Mode mode) {
DCHECK_EQ(INVALID_HANDLE_VALUE, pipe_);
- string16 pipe_name;
+ base::string16 pipe_name;
// If we already have a valid pipe for channel just copy it.
if (channel_handle.pipe.handle) {
DCHECK(channel_handle.name.empty());