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 | 10 |
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1064 const char kTabManagementExperimentTypeBasil[] = | 1064 const char kTabManagementExperimentTypeBasil[] = |
1065 "tab-management-experiment-type-basil"; | 1065 "tab-management-experiment-type-basil"; |
1066 const char kTabManagementExperimentTypeChive[] = | 1066 const char kTabManagementExperimentTypeChive[] = |
1067 "tab-management-experiment-type-chive"; | 1067 "tab-management-experiment-type-chive"; |
1068 const char kTabManagementExperimentTypeDill[] = | 1068 const char kTabManagementExperimentTypeDill[] = |
1069 "tab-management-experiment-type-dill"; | 1069 "tab-management-experiment-type-dill"; |
1070 const char kTabManagementExperimentTypeDisabled[] = | 1070 const char kTabManagementExperimentTypeDisabled[] = |
1071 "tab-management-experiment-type-disabled"; | 1071 "tab-management-experiment-type-disabled"; |
1072 const char kTabManagementExperimentTypeElderberry[] = | 1072 const char kTabManagementExperimentTypeElderberry[] = |
1073 "tab-management-experiment-type-elderberry"; | 1073 "tab-management-experiment-type-elderberry"; |
| 1074 |
| 1075 // Custom WebAPK server URL for the sake of testing. |
| 1076 const char kWebApkServerUrl[] = "webapk-server-url"; |
1074 #endif // defined(OS_ANDROID) | 1077 #endif // defined(OS_ANDROID) |
1075 | 1078 |
1076 #if defined(OS_CHROMEOS) | 1079 #if defined(OS_CHROMEOS) |
1077 // Enables the intent picker so the user can handle URL links with ARC apps. | 1080 // Enables the intent picker so the user can handle URL links with ARC apps. |
1078 const char kEnableIntentPicker[] = "enable-intent-picker"; | 1081 const char kEnableIntentPicker[] = "enable-intent-picker"; |
1079 | 1082 |
1080 // Enables native cups integration | 1083 // Enables native cups integration |
1081 const char kEnableNativeCups[] = "enable-native-cups"; | 1084 const char kEnableNativeCups[] = "enable-native-cups"; |
1082 #endif // defined(OS_CHROMEOS) | 1085 #endif // defined(OS_CHROMEOS) |
1083 | 1086 |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 | 1300 |
1298 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
1299 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1302 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1300 // | 1303 // |
1301 // You were going to just dump your switches here, weren't you? Instead, please | 1304 // You were going to just dump your switches here, weren't you? Instead, please |
1302 // put them in alphabetical order above, or in order inside the appropriate | 1305 // put them in alphabetical order above, or in order inside the appropriate |
1303 // ifdef at the bottom. The order should match the header. | 1306 // ifdef at the bottom. The order should match the header. |
1304 // ----------------------------------------------------------------------------- | 1307 // ----------------------------------------------------------------------------- |
1305 | 1308 |
1306 } // namespace switches | 1309 } // namespace switches |
OLD | NEW |