| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 const char kForceFirstRun[] = "force-first-run"; | 488 const char kForceFirstRun[] = "force-first-run"; |
| 489 | 489 |
| 490 // Forces Chrome to use localNTP instead of server (GWS) NTP. | 490 // Forces Chrome to use localNTP instead of server (GWS) NTP. |
| 491 const char kForceLocalNtp[] = "force-local-ntp"; | 491 const char kForceLocalNtp[] = "force-local-ntp"; |
| 492 | 492 |
| 493 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data | 493 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data |
| 494 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids | 494 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids |
| 495 // prefixed with the character "t" will be treated as Trigger Variation Ids. | 495 // prefixed with the character "t" will be treated as Trigger Variation Ids. |
| 496 const char kForceVariationIds[] = "force-variation-ids"; | 496 const char kForceVariationIds[] = "force-variation-ids"; |
| 497 | 497 |
| 498 // Enables grouping websites by domain and filtering them by period. | |
| 499 const char kHistoryEnableGroupByDomain[] = "enable-grouped-history"; | |
| 500 | |
| 501 // Specifies which page will be displayed in newly-opened tabs. We need this | 498 // Specifies which page will be displayed in newly-opened tabs. We need this |
| 502 // for testing purposes so that the UI tests don't depend on what comes up for | 499 // for testing purposes so that the UI tests don't depend on what comes up for |
| 503 // http://google.com. | 500 // http://google.com. |
| 504 const char kHomePage[] = "homepage"; | 501 const char kHomePage[] = "homepage"; |
| 505 | 502 |
| 506 // The maximum number of retry attempts to resolve the host. Set this to zero | 503 // The maximum number of retry attempts to resolve the host. Set this to zero |
| 507 // to disable host resolver retry attempts. | 504 // to disable host resolver retry attempts. |
| 508 const char kHostResolverRetryAttempts[] = "host-resolver-retry-attempts"; | 505 const char kHostResolverRetryAttempts[] = "host-resolver-retry-attempts"; |
| 509 | 506 |
| 510 // Comma-separated list of rules that control how hostnames are mapped. | 507 // Comma-separated list of rules that control how hostnames are mapped. |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 | 1178 |
| 1182 // ----------------------------------------------------------------------------- | 1179 // ----------------------------------------------------------------------------- |
| 1183 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1180 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1184 // | 1181 // |
| 1185 // You were going to just dump your switches here, weren't you? Instead, please | 1182 // You were going to just dump your switches here, weren't you? Instead, please |
| 1186 // put them in alphabetical order above, or in order inside the appropriate | 1183 // put them in alphabetical order above, or in order inside the appropriate |
| 1187 // ifdef at the bottom. The order should match the header. | 1184 // ifdef at the bottom. The order should match the header. |
| 1188 // ----------------------------------------------------------------------------- | 1185 // ----------------------------------------------------------------------------- |
| 1189 | 1186 |
| 1190 } // namespace switches | 1187 } // namespace switches |
| OLD | NEW |