summaryrefslogtreecommitdiffstats
path: root/base/debug_on_start.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 02:07:25 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 02:07:25 +0000
commitb7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78 (patch)
treed723b8556ad386a0b8a6e999e3a842e0bfe6f9b0 /base/debug_on_start.h
parent1976d41ac728fcceb30f2df3c243cb7417f538f1 (diff)
downloadchromium_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 'base/debug_on_start.h')
-rw-r--r--base/debug_on_start.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug_on_start.h b/base/debug_on_start.h
index ab823cf..e31e7eb 100644
--- a/base/debug_on_start.h
+++ b/base/debug_on_start.h
@@ -31,7 +31,7 @@ class DebugOnStart {
// Returns true if the 'argument' is present in the 'command_line'. It does
// not use the CRT, only Kernel32 functions.
- static bool FindArgument(wchar_t* command_line, const wchar_t* argument);
+ static bool FindArgument(wchar_t* command_line, const char* argument);
};
// Set the function pointer to our function to look for a crash on start. The