From 711a353ad1d530fb05da259bf3b6011f6a974ecf Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Wed, 8 Dec 2010 22:18:37 +0000 Subject: Get rid of std::wstring version of HasSwitch. BUG=24672 TEST=trybots Review URL: http://codereview.chromium.org/5649003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68650 0039d316-1c4b-4281-b951-d872f2087c98 --- net/tools/dump_cache/dump_cache.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'net/tools') diff --git a/net/tools/dump_cache/dump_cache.cc b/net/tools/dump_cache/dump_cache.cc index 9644aae..3561fb7 100644 --- a/net/tools/dump_cache/dump_cache.cc +++ b/net/tools/dump_cache/dump_cache.cc @@ -46,16 +46,16 @@ const char kInputPath[] = "input"; const char kOutputPath[] = "output"; // Dumps the file headers to stdout. -const wchar_t kDumpHeaders[] = L"dump-headers"; +const char kDumpHeaders[] = "dump-headers"; // Dumps all entries to stdout. -const wchar_t kDumpContents[] = L"dump-contents"; +const char kDumpContents[] = "dump-contents"; // Convert the cache to files. -const wchar_t kDumpToFiles[] = L"dump-to-files"; +const char kDumpToFiles[] = "dump-to-files"; // Upgrade an old version to the current one. -const wchar_t kUpgrade[] = L"upgrade"; +const char kUpgrade[] = "upgrade"; // Internal use: const char kSlave[] = "slave"; -- cgit v1.1