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

Unified Diff: chrome/tools/crash_service/crash_service.cc

Issue 270062: Use ASCII strings for switch names. (Closed)
Patch Set: victory Created 11 years, 2 months 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 | « chrome/tools/crash_service/crash_service.h ('k') | chrome_frame/chrome_launcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/crash_service/crash_service.cc
diff --git a/chrome/tools/crash_service/crash_service.cc b/chrome/tools/crash_service/crash_service.cc
index badfd338a348737e558cc251d4ee1bad05e4be68..058c40a42e6567f77e2662bba344c39556f4d71a 100644
--- a/chrome/tools/crash_service/crash_service.cc
+++ b/chrome/tools/crash_service/crash_service.cc
@@ -147,9 +147,9 @@ struct DumpJobInfo {
} // namespace
// Command line switches:
-const wchar_t CrashService::kMaxReports[] = L"max-reports";
-const wchar_t CrashService::kNoWindow[] = L"no-window";
-const wchar_t CrashService::kReporterTag[]= L"reporter";
+const char CrashService::kMaxReports[] = "max-reports";
+const char CrashService::kNoWindow[] = "no-window";
+const char CrashService::kReporterTag[] = "reporter";
CrashService::CrashService(const std::wstring& report_dir)
: report_path_(report_dir),
« no previous file with comments | « chrome/tools/crash_service/crash_service.h ('k') | chrome_frame/chrome_launcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698