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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 const char kTabManagementExperimentTypeDisabled[] = | 942 const char kTabManagementExperimentTypeDisabled[] = |
943 "tab-management-experiment-type-disabled"; | 943 "tab-management-experiment-type-disabled"; |
944 const char kTabManagementExperimentTypeElderberry[] = | 944 const char kTabManagementExperimentTypeElderberry[] = |
945 "tab-management-experiment-type-elderberry"; | 945 "tab-management-experiment-type-elderberry"; |
946 | 946 |
947 // Custom WebAPK server URL for the sake of testing. | 947 // Custom WebAPK server URL for the sake of testing. |
948 const char kWebApkServerUrl[] = "webapk-server-url"; | 948 const char kWebApkServerUrl[] = "webapk-server-url"; |
949 #endif // defined(OS_ANDROID) | 949 #endif // defined(OS_ANDROID) |
950 | 950 |
951 #if defined(OS_CHROMEOS) | 951 #if defined(OS_CHROMEOS) |
| 952 // Enables apps on the login screen. |
| 953 const char kEnableLoginScreenApps[] = "enable-login-screen-apps"; |
| 954 |
952 // Enables native cups integration | 955 // Enables native cups integration |
953 const char kEnableNativeCups[] = "enable-native-cups"; | 956 const char kEnableNativeCups[] = "enable-native-cups"; |
954 | 957 |
955 // Custom crosh command. | 958 // Custom crosh command. |
956 const char kCroshCommand[] = "crosh-command"; | 959 const char kCroshCommand[] = "crosh-command"; |
957 #endif // defined(OS_CHROMEOS) | 960 #endif // defined(OS_CHROMEOS) |
958 | 961 |
959 #if defined(USE_ASH) | 962 #if defined(USE_ASH) |
960 const char kOpenAsh[] = "open-ash"; | 963 const char kOpenAsh[] = "open-ash"; |
961 #endif | 964 #endif |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 | 1189 |
1187 // ----------------------------------------------------------------------------- | 1190 // ----------------------------------------------------------------------------- |
1188 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1191 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
1189 // | 1192 // |
1190 // You were going to just dump your switches here, weren't you? Instead, please | 1193 // You were going to just dump your switches here, weren't you? Instead, please |
1191 // put them in alphabetical order above, or in order inside the appropriate | 1194 // put them in alphabetical order above, or in order inside the appropriate |
1192 // ifdef at the bottom. The order should match the header. | 1195 // ifdef at the bottom. The order should match the header. |
1193 // ----------------------------------------------------------------------------- | 1196 // ----------------------------------------------------------------------------- |
1194 | 1197 |
1195 } // namespace switches | 1198 } // namespace switches |
OLD | NEW |