summaryrefslogtreecommitdiffstats
path: root/base/command_line.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-08 22:18:37 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-08 22:18:37 +0000
commit711a353ad1d530fb05da259bf3b6011f6a974ecf (patch)
tree9e41a04cb0245620162cf1440eca12642d884278 /base/command_line.h
parent3f40a6ae6f0f2889a9ef4ad70c44c79590228f3a (diff)
downloadchromium_src-711a353ad1d530fb05da259bf3b6011f6a974ecf.zip
chromium_src-711a353ad1d530fb05da259bf3b6011f6a974ecf.tar.gz
chromium_src-711a353ad1d530fb05da259bf3b6011f6a974ecf.tar.bz2
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
Diffstat (limited to 'base/command_line.h')
-rw-r--r--base/command_line.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/base/command_line.h b/base/command_line.h
index a5bdd1a..df0293c 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -161,13 +161,6 @@ class CommandLine {
void CopySwitchesFrom(const CommandLine& source, const char* const switches[],
size_t count);
- // APIs that work with wstrings are deprecated.
- // TODO(evanm): remove all of these.
-#if defined(OS_WIN)
- // Deprecated on non-Windows.
- bool HasSwitch(const std::wstring& switch_string) const;
-#endif
-
private:
friend class InProcessBrowserTest;