| 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 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1081 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1082 | 1082 |
| 1083 // Specifies Android phone page loading progress bar animation. | 1083 // Specifies Android phone page loading progress bar animation. |
| 1084 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1084 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1085 | 1085 |
| 1086 // Specifies a particular tab management experiment to enable. | 1086 // Specifies a particular tab management experiment to enable. |
| 1087 const char kTabManagementExperimentTypeDisabled[] = | 1087 const char kTabManagementExperimentTypeDisabled[] = |
| 1088 "tab-management-experiment-type-disabled"; | 1088 "tab-management-experiment-type-disabled"; |
| 1089 const char kTabManagementExperimentTypeElderberry[] = | 1089 const char kTabManagementExperimentTypeElderberry[] = |
| 1090 "tab-management-experiment-type-elderberry"; | 1090 "tab-management-experiment-type-elderberry"; |
| 1091 | |
| 1092 // Custom WebAPK server URL for the sake of testing. | |
| 1093 const char kWebApkServerUrl[] = "webapk-server-url"; | |
| 1094 #endif // defined(OS_ANDROID) | 1091 #endif // defined(OS_ANDROID) |
| 1095 | 1092 |
| 1096 #if defined(OS_CHROMEOS) | 1093 #if defined(OS_CHROMEOS) |
| 1097 // Enables native cups integration | 1094 // Enables native cups integration |
| 1098 const char kEnableNativeCups[] = "enable-native-cups"; | 1095 const char kEnableNativeCups[] = "enable-native-cups"; |
| 1099 #endif // defined(OS_CHROMEOS) | 1096 #endif // defined(OS_CHROMEOS) |
| 1100 | 1097 |
| 1101 #if defined(USE_ASH) | 1098 #if defined(USE_ASH) |
| 1102 const char kOpenAsh[] = "open-ash"; | 1099 const char kOpenAsh[] = "open-ash"; |
| 1103 #endif | 1100 #endif |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 | 1324 |
| 1328 // ----------------------------------------------------------------------------- | 1325 // ----------------------------------------------------------------------------- |
| 1329 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1330 // | 1327 // |
| 1331 // You were going to just dump your switches here, weren't you? Instead, please | 1328 // You were going to just dump your switches here, weren't you? Instead, please |
| 1332 // put them in alphabetical order above, or in order inside the appropriate | 1329 // put them in alphabetical order above, or in order inside the appropriate |
| 1333 // ifdef at the bottom. The order should match the header. | 1330 // ifdef at the bottom. The order should match the header. |
| 1334 // ----------------------------------------------------------------------------- | 1331 // ----------------------------------------------------------------------------- |
| 1335 | 1332 |
| 1336 } // namespace switches | 1333 } // namespace switches |
| OLD | NEW |