| 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 | 901 |
| 902 // Forces a custom summary to be displayed below the update menu item. | 902 // Forces a custom summary to be displayed below the update menu item. |
| 903 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; | 903 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; |
| 904 | 904 |
| 905 // Sets the market URL for Chrome for use in testing. | 905 // Sets the market URL for Chrome for use in testing. |
| 906 const char kMarketUrlForTesting[] = "market-url-for-testing"; | 906 const char kMarketUrlForTesting[] = "market-url-for-testing"; |
| 907 | 907 |
| 908 // Switch to an existing tab for a suggestion opened from the New Tab Page. | 908 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
| 909 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 909 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 910 | 910 |
| 911 // Specifies a particular hint text to show on omnibox url bar. |
| 912 const char kOmniboxPlaceholderExperimentSwitch[] = |
| 913 "omnibox-placeholder-experiment-switch"; |
| 914 |
| 911 // Specifies Android phone page loading progress bar animation. | 915 // Specifies Android phone page loading progress bar animation. |
| 912 const char kProgressBarAnimation[] = "progress-bar-animation"; | 916 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 913 | 917 |
| 914 // Specifies a particular tab management experiment to enable. | 918 // Specifies a particular tab management experiment to enable. |
| 915 const char kTabManagementExperimentTypeDisabled[] = | 919 const char kTabManagementExperimentTypeDisabled[] = |
| 916 "tab-management-experiment-type-disabled"; | 920 "tab-management-experiment-type-disabled"; |
| 917 const char kTabManagementExperimentTypeElderberry[] = | 921 const char kTabManagementExperimentTypeElderberry[] = |
| 918 "tab-management-experiment-type-elderberry"; | 922 "tab-management-experiment-type-elderberry"; |
| 919 | 923 |
| 920 // Custom WebAPK server URL for the sake of testing. | 924 // Custom WebAPK server URL for the sake of testing. |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 | 1181 |
| 1178 // ----------------------------------------------------------------------------- | 1182 // ----------------------------------------------------------------------------- |
| 1179 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1183 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1180 // | 1184 // |
| 1181 // You were going to just dump your switches here, weren't you? Instead, please | 1185 // You were going to just dump your switches here, weren't you? Instead, please |
| 1182 // put them in alphabetical order above, or in order inside the appropriate | 1186 // put them in alphabetical order above, or in order inside the appropriate |
| 1183 // ifdef at the bottom. The order should match the header. | 1187 // ifdef at the bottom. The order should match the header. |
| 1184 // ----------------------------------------------------------------------------- | 1188 // ----------------------------------------------------------------------------- |
| 1185 | 1189 |
| 1186 } // namespace switches | 1190 } // namespace switches |
| OLD | NEW |