summaryrefslogtreecommitdiffstats
path: root/base/command_line.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 00:06:31 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 00:06:31 +0000
commit78c4c4239c99f188dc63377cfc889876be65ee73 (patch)
tree6720ade2077e8eb510229a2dd414e57d7b03cd03 /base/command_line.h
parentde9eccd48ba30a46986d793c4acf50668d36ea5c (diff)
downloadchromium_src-78c4c4239c99f188dc63377cfc889876be65ee73.zip
chromium_src-78c4c4239c99f188dc63377cfc889876be65ee73.tar.gz
chromium_src-78c4c4239c99f188dc63377cfc889876be65ee73.tar.bz2
CommandLine: deprecate another function on non-Windows
BUG=23581 TEST=CommandLine unit tests Review URL: http://codereview.chromium.org/3549023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/command_line.h')
-rw-r--r--base/command_line.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/command_line.h b/base/command_line.h
index 9cad0f1..31c0f5f 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -162,9 +162,9 @@ class CommandLine {
// APIs that work with wstrings are deprecated.
// TODO(evanm): remove all of these.
- std::wstring program() const;
#if defined(OS_WIN)
// Deprecated on non-Windows.
+ std::wstring program() const;
bool HasSwitch(const std::wstring& switch_string) const;
#endif