diff options
Diffstat (limited to 'base/command_line.cc')
-rw-r--r-- | base/command_line.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/base/command_line.cc b/base/command_line.cc index 427bed4..70d6872 100644 --- a/base/command_line.cc +++ b/base/command_line.cc @@ -287,13 +287,6 @@ bool CommandLine::HasSwitch(const std::string& switch_string) const { return switches_.find(lowercased_switch) != switches_.end(); } -#if defined(OS_WIN) -// Deprecated; still temporarily available on Windows. -bool CommandLine::HasSwitch(const std::wstring& switch_string) const { - return HasSwitch(WideToASCII(switch_string)); -} -#endif - std::string CommandLine::GetSwitchValueASCII( const std::string& switch_string) const { CommandLine::StringType value = GetSwitchValueNative(switch_string); |