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 "printing/features/features.h" | 10 #include "printing/features/features.h" |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; | 522 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; |
523 | 523 |
524 // Frequency in seconds for Extensions auto-update. | 524 // Frequency in seconds for Extensions auto-update. |
525 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 525 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
526 | 526 |
527 // If this flag is present then this command line is being delegated to an | 527 // If this flag is present then this command line is being delegated to an |
528 // already running chrome process via the fast path, ie: before chrome.dll is | 528 // already running chrome process via the fast path, ie: before chrome.dll is |
529 // loaded. It is useful to tell the difference for tracking purposes. | 529 // loaded. It is useful to tell the difference for tracking purposes. |
530 const char kFastStart[] = "fast-start"; | 530 const char kFastStart[] = "fast-start"; |
531 | 531 |
| 532 // Forces Android application mode. This hides certain system UI elements and |
| 533 // forces the app to be installed if it hasn't been already. |
| 534 const char kForceAndroidAppMode[] = "force-android-app-mode"; |
| 535 |
532 // Forces application mode. This hides certain system UI elements and forces | 536 // Forces application mode. This hides certain system UI elements and forces |
533 // the app to be installed if it hasn't been already. | 537 // the app to be installed if it hasn't been already. |
534 const char kForceAppMode[] = "force-app-mode"; | 538 const char kForceAppMode[] = "force-app-mode"; |
535 | 539 |
536 // Displays the First Run experience when the browser is started, regardless of | 540 // Displays the First Run experience when the browser is started, regardless of |
537 // whether or not it's actually the First Run (this overrides kNoFirstRun). | 541 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
538 const char kForceFirstRun[] = "force-first-run"; | 542 const char kForceFirstRun[] = "force-first-run"; |
539 | 543 |
540 // Forces Chrome to use localNTP instead of server (GWS) NTP. | 544 // Forces Chrome to use localNTP instead of server (GWS) NTP. |
541 const char kForceLocalNtp[] = "force-local-ntp"; | 545 const char kForceLocalNtp[] = "force-local-ntp"; |
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 | 1313 |
1310 // ----------------------------------------------------------------------------- | 1314 // ----------------------------------------------------------------------------- |
1311 // 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. |
1312 // | 1316 // |
1313 // 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 |
1314 // 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 |
1315 // ifdef at the bottom. The order should match the header. | 1319 // ifdef at the bottom. The order should match the header. |
1316 // ----------------------------------------------------------------------------- | 1320 // ----------------------------------------------------------------------------- |
1317 | 1321 |
1318 } // namespace switches | 1322 } // namespace switches |
OLD | NEW |