diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 02:07:25 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 02:07:25 +0000 |
commit | b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78 (patch) | |
tree | d723b8556ad386a0b8a6e999e3a842e0bfe6f9b0 /ipc | |
parent | 1976d41ac728fcceb30f2df3c243cb7417f538f1 (diff) | |
download | chromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.zip chromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.tar.gz chromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.tar.bz2 |
Use ASCII strings for switch names.
Review URL: http://codereview.chromium.org/270062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28779 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_switches.cc | 6 | ||||
-rw-r--r-- | ipc/ipc_switches.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ipc/ipc_switches.cc b/ipc/ipc_switches.cc index 18f7c27..2a8f470 100644 --- a/ipc/ipc_switches.cc +++ b/ipc/ipc_switches.cc @@ -13,16 +13,16 @@ namespace switches { // On POSIX only: use FIFO for IPC channels so that "unrelated" process // can connect to a channel, provided it knows its name. For debugging purposes. -const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; +const char kIPCUseFIFO[] = "ipc-use-fifo"; // The value of this switch tells the child process which // IPC channel the browser expects to use to communicate with it. -const wchar_t kProcessChannelID[] = L"channel"; +const char kProcessChannelID[] = "channel"; // Will add kDebugOnStart to every child processes. If a value is passed, it // will be used as a filter to determine if the child process should have the // kDebugOnStart flag passed on or not. -const wchar_t kDebugChildren[] = L"debug-children"; +const char kDebugChildren[] = "debug-children"; } // namespace switches diff --git a/ipc/ipc_switches.h b/ipc/ipc_switches.h index 1468432..143dc3d 100644 --- a/ipc/ipc_switches.h +++ b/ipc/ipc_switches.h @@ -11,9 +11,9 @@ namespace switches { -extern const wchar_t kIPCUseFIFO[]; -extern const wchar_t kProcessChannelID[]; -extern const wchar_t kDebugChildren[]; +extern const char kIPCUseFIFO[]; +extern const char kProcessChannelID[]; +extern const char kDebugChildren[]; } // namespace switches |