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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; | 514 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; |
515 | 515 |
516 // Frequency in seconds for Extensions auto-update. | 516 // Frequency in seconds for Extensions auto-update. |
517 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 517 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
518 | 518 |
519 // If this flag is present then this command line is being delegated to an | 519 // If this flag is present then this command line is being delegated to an |
520 // already running chrome process via the fast path, ie: before chrome.dll is | 520 // already running chrome process via the fast path, ie: before chrome.dll is |
521 // loaded. It is useful to tell the difference for tracking purposes. | 521 // loaded. It is useful to tell the difference for tracking purposes. |
522 const char kFastStart[] = "fast-start"; | 522 const char kFastStart[] = "fast-start"; |
523 | 523 |
| 524 // Forces Android application mode. This hides certain system UI elements and |
| 525 // forces the app to be installed if it hasn't been already. |
| 526 const char kForceAndroidAppMode[] = "force-android-app-mode"; |
| 527 |
524 // Forces application mode. This hides certain system UI elements and forces | 528 // Forces application mode. This hides certain system UI elements and forces |
525 // the app to be installed if it hasn't been already. | 529 // the app to be installed if it hasn't been already. |
526 const char kForceAppMode[] = "force-app-mode"; | 530 const char kForceAppMode[] = "force-app-mode"; |
527 | 531 |
528 // Displays the First Run experience when the browser is started, regardless of | 532 // Displays the First Run experience when the browser is started, regardless of |
529 // whether or not it's actually the First Run (this overrides kNoFirstRun). | 533 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
530 const char kForceFirstRun[] = "force-first-run"; | 534 const char kForceFirstRun[] = "force-first-run"; |
531 | 535 |
532 // Forces Chrome to use localNTP instead of server (GWS) NTP. | 536 // Forces Chrome to use localNTP instead of server (GWS) NTP. |
533 const char kForceLocalNtp[] = "force-local-ntp"; | 537 const char kForceLocalNtp[] = "force-local-ntp"; |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1313 | 1317 |
1314 // ----------------------------------------------------------------------------- | 1318 // ----------------------------------------------------------------------------- |
1315 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1319 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
1316 // | 1320 // |
1317 // You were going to just dump your switches here, weren't you? Instead, please | 1321 // You were going to just dump your switches here, weren't you? Instead, please |
1318 // put them in alphabetical order above, or in order inside the appropriate | 1322 // put them in alphabetical order above, or in order inside the appropriate |
1319 // ifdef at the bottom. The order should match the header. | 1323 // ifdef at the bottom. The order should match the header. |
1320 // ----------------------------------------------------------------------------- | 1324 // ----------------------------------------------------------------------------- |
1321 | 1325 |
1322 } // namespace switches | 1326 } // namespace switches |
OLD | NEW |