| 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 | 890 |
| 891 // Simulates that current version is outdated. | 891 // Simulates that current version is outdated. |
| 892 const char kSimulateOutdated[] = "simulate-outdated"; | 892 const char kSimulateOutdated[] = "simulate-outdated"; |
| 893 | 893 |
| 894 // Simulates that current version is outdated and auto-update is off. | 894 // Simulates that current version is outdated and auto-update is off. |
| 895 const char kSimulateOutdatedNoAU[] = "simulate-outdated-no-au"; | 895 const char kSimulateOutdatedNoAU[] = "simulate-outdated-no-au"; |
| 896 | 896 |
| 897 // Simulates an update being available. | 897 // Simulates an update being available. |
| 898 const char kSimulateUpgrade[] = "simulate-upgrade"; | 898 const char kSimulateUpgrade[] = "simulate-upgrade"; |
| 899 | 899 |
| 900 // Enables the site settings all sites list and site details pages in the Chrome |
| 901 // settings UI. |
| 902 const char kSiteSettingsAllSitesAndDetails[] = "site-settings-all"; |
| 903 |
| 900 // Speculative resource prefetching. | 904 // Speculative resource prefetching. |
| 901 const char kSpeculativeResourcePrefetching[] = | 905 const char kSpeculativeResourcePrefetching[] = |
| 902 "speculative-resource-prefetching"; | 906 "speculative-resource-prefetching"; |
| 903 | 907 |
| 904 // Speculative resource prefetching is disabled. | 908 // Speculative resource prefetching is disabled. |
| 905 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 909 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
| 906 | 910 |
| 907 // Speculative resource prefetching is enabled. | 911 // Speculative resource prefetching is enabled. |
| 908 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; | 912 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; |
| 909 | 913 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1324 | 1328 |
| 1325 // ----------------------------------------------------------------------------- | 1329 // ----------------------------------------------------------------------------- |
| 1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1330 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1327 // | 1331 // |
| 1328 // You were going to just dump your switches here, weren't you? Instead, please | 1332 // You were going to just dump your switches here, weren't you? Instead, please |
| 1329 // put them in alphabetical order above, or in order inside the appropriate | 1333 // put them in alphabetical order above, or in order inside the appropriate |
| 1330 // ifdef at the bottom. The order should match the header. | 1334 // ifdef at the bottom. The order should match the header. |
| 1331 // ----------------------------------------------------------------------------- | 1335 // ----------------------------------------------------------------------------- |
| 1332 | 1336 |
| 1333 } // namespace switches | 1337 } // namespace switches |
| OLD | NEW |