| 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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 "tab-management-experiment-type-elderberry"; | 918 "tab-management-experiment-type-elderberry"; |
| 919 | 919 |
| 920 // Custom WebAPK server URL for the sake of testing. | 920 // Custom WebAPK server URL for the sake of testing. |
| 921 const char kWebApkServerUrl[] = "webapk-server-url"; | 921 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 922 #endif // defined(OS_ANDROID) | 922 #endif // defined(OS_ANDROID) |
| 923 | 923 |
| 924 #if defined(OS_CHROMEOS) | 924 #if defined(OS_CHROMEOS) |
| 925 // Custom crosh command. | 925 // Custom crosh command. |
| 926 const char kCroshCommand[] = "crosh-command"; | 926 const char kCroshCommand[] = "crosh-command"; |
| 927 | 927 |
| 928 // Disables apps on the login screen. By default, they are allowed and can be |
| 929 // installed through policy. |
| 930 const char kDisableLoginScreenApps[] = "disable-login-screen-apps"; |
| 931 |
| 928 // Disables native cups integration | 932 // Disables native cups integration |
| 929 const char kDisableNativeCups[] = "disable-native-cups"; | 933 const char kDisableNativeCups[] = "disable-native-cups"; |
| 930 | |
| 931 // Enables apps on the login screen. | |
| 932 const char kEnableLoginScreenApps[] = "enable-login-screen-apps"; | |
| 933 #endif // defined(OS_CHROMEOS) | 934 #endif // defined(OS_CHROMEOS) |
| 934 | 935 |
| 935 #if defined(USE_ASH) | 936 #if defined(USE_ASH) |
| 936 const char kOpenAsh[] = "open-ash"; | 937 const char kOpenAsh[] = "open-ash"; |
| 937 #endif | 938 #endif |
| 938 | 939 |
| 939 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 940 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 940 // These flags show the man page on Linux. They are equivalent to each | 941 // These flags show the man page on Linux. They are equivalent to each |
| 941 // other. | 942 // other. |
| 942 const char kHelp[] = "help"; | 943 const char kHelp[] = "help"; |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1176 | 1177 |
| 1177 // ----------------------------------------------------------------------------- | 1178 // ----------------------------------------------------------------------------- |
| 1178 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1179 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1179 // | 1180 // |
| 1180 // You were going to just dump your switches here, weren't you? Instead, please | 1181 // You were going to just dump your switches here, weren't you? Instead, please |
| 1181 // put them in alphabetical order above, or in order inside the appropriate | 1182 // put them in alphabetical order above, or in order inside the appropriate |
| 1182 // ifdef at the bottom. The order should match the header. | 1183 // ifdef at the bottom. The order should match the header. |
| 1183 // ----------------------------------------------------------------------------- | 1184 // ----------------------------------------------------------------------------- |
| 1184 | 1185 |
| 1185 } // namespace switches | 1186 } // namespace switches |
| OLD | NEW |