| 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 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1055 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1055 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1056 | 1056 |
| 1057 // Specifies Android phone page loading progress bar animation. | 1057 // Specifies Android phone page loading progress bar animation. |
| 1058 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1058 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1059 | 1059 |
| 1060 // Specifies a particular tab management experiment to enable. | 1060 // Specifies a particular tab management experiment to enable. |
| 1061 const char kTabManagementExperimentTypeDisabled[] = | 1061 const char kTabManagementExperimentTypeDisabled[] = |
| 1062 "tab-management-experiment-type-disabled"; | 1062 "tab-management-experiment-type-disabled"; |
| 1063 const char kTabManagementExperimentTypeElderberry[] = | 1063 const char kTabManagementExperimentTypeElderberry[] = |
| 1064 "tab-management-experiment-type-elderberry"; | 1064 "tab-management-experiment-type-elderberry"; |
| 1065 |
| 1066 // Custom WebAPK server URL for the sake of testing. |
| 1067 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 1065 #endif // defined(OS_ANDROID) | 1068 #endif // defined(OS_ANDROID) |
| 1066 | 1069 |
| 1067 #if defined(OS_CHROMEOS) | 1070 #if defined(OS_CHROMEOS) |
| 1068 // Enables native cups integration | 1071 // Enables native cups integration |
| 1069 const char kEnableNativeCups[] = "enable-native-cups"; | 1072 const char kEnableNativeCups[] = "enable-native-cups"; |
| 1070 #endif // defined(OS_CHROMEOS) | 1073 #endif // defined(OS_CHROMEOS) |
| 1071 | 1074 |
| 1072 #if defined(USE_ASH) | 1075 #if defined(USE_ASH) |
| 1073 const char kOpenAsh[] = "open-ash"; | 1076 const char kOpenAsh[] = "open-ash"; |
| 1074 #endif | 1077 #endif |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 | 1313 |
| 1311 // ----------------------------------------------------------------------------- | 1314 // ----------------------------------------------------------------------------- |
| 1312 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1315 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1313 // | 1316 // |
| 1314 // You were going to just dump your switches here, weren't you? Instead, please | 1317 // You were going to just dump your switches here, weren't you? Instead, please |
| 1315 // put them in alphabetical order above, or in order inside the appropriate | 1318 // put them in alphabetical order above, or in order inside the appropriate |
| 1316 // ifdef at the bottom. The order should match the header. | 1319 // ifdef at the bottom. The order should match the header. |
| 1317 // ----------------------------------------------------------------------------- | 1320 // ----------------------------------------------------------------------------- |
| 1318 | 1321 |
| 1319 } // namespace switches | 1322 } // namespace switches |
| OLD | NEW |