| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 // Used for testing - keeps browser alive after last browser window closes. | 608 // Used for testing - keeps browser alive after last browser window closes. |
| 609 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 609 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 610 | 610 |
| 611 // Enable Kiosk mode. | 611 // Enable Kiosk mode. |
| 612 const char kKioskMode[] = "kiosk"; | 612 const char kKioskMode[] = "kiosk"; |
| 613 | 613 |
| 614 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 614 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
| 615 // See http://crbug.com/31395. | 615 // See http://crbug.com/31395. |
| 616 const char kKioskModePrinting[] = "kiosk-printing"; | 616 const char kKioskModePrinting[] = "kiosk-printing"; |
| 617 | 617 |
| 618 // Comma-separated list of directories with component extensions to load. | |
| 619 const char kLoadComponentExtension[] = "load-component-extension"; | |
| 620 | |
| 621 // Loads an extension from the specified directory. | 618 // Loads an extension from the specified directory. |
| 622 const char kLoadExtension[] = "load-extension"; | 619 const char kLoadExtension[] = "load-extension"; |
| 623 | 620 |
| 624 // Makes Chrome default browser | 621 // Makes Chrome default browser |
| 625 const char kMakeDefaultBrowser[] = "make-default-browser"; | 622 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 626 | 623 |
| 627 extern const char kSecurityChip[] = "security-chip"; | 624 extern const char kSecurityChip[] = "security-chip"; |
| 628 extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only"; | 625 extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only"; |
| 629 extern const char kSecurityChipShowAll[] = "show-all"; | 626 extern const char kSecurityChipShowAll[] = "show-all"; |
| 630 | 627 |
| (...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 | 1324 |
| 1328 // ----------------------------------------------------------------------------- | 1325 // ----------------------------------------------------------------------------- |
| 1329 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1330 // | 1327 // |
| 1331 // You were going to just dump your switches here, weren't you? Instead, please | 1328 // You were going to just dump your switches here, weren't you? Instead, please |
| 1332 // put them in alphabetical order above, or in order inside the appropriate | 1329 // put them in alphabetical order above, or in order inside the appropriate |
| 1333 // ifdef at the bottom. The order should match the header. | 1330 // ifdef at the bottom. The order should match the header. |
| 1334 // ----------------------------------------------------------------------------- | 1331 // ----------------------------------------------------------------------------- |
| 1335 | 1332 |
| 1336 } // namespace switches | 1333 } // namespace switches |
| OLD | NEW |