| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 #if defined(USE_ASH) | 1011 #if defined(USE_ASH) |
| 1012 const char kOpenAsh[] = "open-ash"; | 1012 const char kOpenAsh[] = "open-ash"; |
| 1013 #endif | 1013 #endif |
| 1014 | 1014 |
| 1015 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1015 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1016 // These flags show the man page on Linux. They are equivalent to each | 1016 // These flags show the man page on Linux. They are equivalent to each |
| 1017 // other. | 1017 // other. |
| 1018 const char kHelp[] = "help"; | 1018 const char kHelp[] = "help"; |
| 1019 const char kHelpShort[] = "h"; | 1019 const char kHelpShort[] = "h"; |
| 1020 | 1020 |
| 1021 // Specifies which password store to use | 1021 // Specifies which encryption storage backend to use. Possible values are |
| 1022 // (detect, default, gnome-keyring, gnome-libsecret, kwallet). | 1022 // kwallet, kwallet5, gnome, gnome-keyring, gnome-libsecret, basic. Any other |
| 1023 // value will lead to Chrome detecting the best backend automatically. |
| 1024 // TODO(crbug.com/571003): Once PasswordStore no longer uses the Keyring or |
| 1025 // KWallet for storing passwords, rename this flag to stop referencing |
| 1026 // passwords. Do not rename it sooner, though; developers and testers might |
| 1027 // rely on it keeping large amounts of testing passwords out of their Keyrings |
| 1028 // or KWallets. |
| 1023 const char kPasswordStore[] = "password-store"; | 1029 const char kPasswordStore[] = "password-store"; |
| 1024 | 1030 |
| 1025 // The same as the --class argument in X applications. Overrides the WM_CLASS | 1031 // The same as the --class argument in X applications. Overrides the WM_CLASS |
| 1026 // window property with the given value. | 1032 // window property with the given value. |
| 1027 const char kWmClass[] = "class"; | 1033 const char kWmClass[] = "class"; |
| 1028 #endif | 1034 #endif |
| 1029 | 1035 |
| 1030 #if defined(OS_MACOSX) | 1036 #if defined(OS_MACOSX) |
| 1031 // Prevents Chrome from quitting when Chrome Apps are open. | 1037 // Prevents Chrome from quitting when Chrome Apps are open. |
| 1032 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; | 1038 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 | 1255 |
| 1250 // ----------------------------------------------------------------------------- | 1256 // ----------------------------------------------------------------------------- |
| 1251 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1257 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1252 // | 1258 // |
| 1253 // You were going to just dump your switches here, weren't you? Instead, please | 1259 // You were going to just dump your switches here, weren't you? Instead, please |
| 1254 // put them in alphabetical order above, or in order inside the appropriate | 1260 // put them in alphabetical order above, or in order inside the appropriate |
| 1255 // ifdef at the bottom. The order should match the header. | 1261 // ifdef at the bottom. The order should match the header. |
| 1256 // ----------------------------------------------------------------------------- | 1262 // ----------------------------------------------------------------------------- |
| 1257 | 1263 |
| 1258 } // namespace switches | 1264 } // namespace switches |
| OLD | NEW |