| 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 const char kFastStart[] = "fast-start"; | 471 const char kFastStart[] = "fast-start"; |
| 472 | 472 |
| 473 // Forces Android application mode. This hides certain system UI elements and | 473 // Forces Android application mode. This hides certain system UI elements and |
| 474 // forces the app to be installed if it hasn't been already. | 474 // forces the app to be installed if it hasn't been already. |
| 475 const char kForceAndroidAppMode[] = "force-android-app-mode"; | 475 const char kForceAndroidAppMode[] = "force-android-app-mode"; |
| 476 | 476 |
| 477 // Forces application mode. This hides certain system UI elements and forces | 477 // Forces application mode. This hides certain system UI elements and forces |
| 478 // the app to be installed if it hasn't been already. | 478 // the app to be installed if it hasn't been already. |
| 479 const char kForceAppMode[] = "force-app-mode"; | 479 const char kForceAppMode[] = "force-app-mode"; |
| 480 | 480 |
| 481 // Forces Desktop to iOS promotion to appear in windows whenever an entrypoint |
| 482 // is triggered. |
| 483 const char kForceDesktopIOSPromotion[] = "force-desktop-ios-promotion"; |
| 484 |
| 481 // Displays the First Run experience when the browser is started, regardless of | 485 // Displays the First Run experience when the browser is started, regardless of |
| 482 // whether or not it's actually the First Run (this overrides kNoFirstRun). | 486 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
| 483 const char kForceFirstRun[] = "force-first-run"; | 487 const char kForceFirstRun[] = "force-first-run"; |
| 484 | 488 |
| 485 // Forces Chrome to use localNTP instead of server (GWS) NTP. | 489 // Forces Chrome to use localNTP instead of server (GWS) NTP. |
| 486 const char kForceLocalNtp[] = "force-local-ntp"; | 490 const char kForceLocalNtp[] = "force-local-ntp"; |
| 487 | 491 |
| 488 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data | 492 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data |
| 489 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids | 493 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids |
| 490 // prefixed with the character "t" will be treated as Trigger Variation Ids. | 494 // prefixed with the character "t" will be treated as Trigger Variation Ids. |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 | 1174 |
| 1171 // ----------------------------------------------------------------------------- | 1175 // ----------------------------------------------------------------------------- |
| 1172 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1176 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1173 // | 1177 // |
| 1174 // You were going to just dump your switches here, weren't you? Instead, please | 1178 // You were going to just dump your switches here, weren't you? Instead, please |
| 1175 // put them in alphabetical order above, or in order inside the appropriate | 1179 // put them in alphabetical order above, or in order inside the appropriate |
| 1176 // ifdef at the bottom. The order should match the header. | 1180 // ifdef at the bottom. The order should match the header. |
| 1177 // ----------------------------------------------------------------------------- | 1181 // ----------------------------------------------------------------------------- |
| 1178 | 1182 |
| 1179 } // namespace switches | 1183 } // namespace switches |
| OLD | NEW |