| 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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 // Used for testing - keeps browser alive after last browser window closes. | 573 // Used for testing - keeps browser alive after last browser window closes. |
| 574 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 574 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 575 | 575 |
| 576 // Enable Kiosk mode. | 576 // Enable Kiosk mode. |
| 577 const char kKioskMode[] = "kiosk"; | 577 const char kKioskMode[] = "kiosk"; |
| 578 | 578 |
| 579 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 579 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
| 580 // See http://crbug.com/31395. | 580 // See http://crbug.com/31395. |
| 581 const char kKioskModePrinting[] = "kiosk-printing"; | 581 const char kKioskModePrinting[] = "kiosk-printing"; |
| 582 | 582 |
| 583 // Comma-separated list of directories with component extensions to load. | |
| 584 const char kLoadComponentExtension[] = "load-component-extension"; | |
| 585 | |
| 586 // Loads an extension from the specified directory. | 583 // Loads an extension from the specified directory. |
| 587 const char kLoadExtension[] = "load-extension"; | 584 const char kLoadExtension[] = "load-extension"; |
| 588 | 585 |
| 589 // Loads the Media Router component extension on startup. | 586 // Loads the Media Router component extension on startup. |
| 590 const char kLoadMediaRouterComponentExtension[] = | 587 const char kLoadMediaRouterComponentExtension[] = |
| 591 "load-media-router-component-extension"; | 588 "load-media-router-component-extension"; |
| 592 | 589 |
| 593 // Makes Chrome default browser | 590 // Makes Chrome default browser |
| 594 const char kMakeDefaultBrowser[] = "make-default-browser"; | 591 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 595 | 592 |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 | 1269 |
| 1273 // ----------------------------------------------------------------------------- | 1270 // ----------------------------------------------------------------------------- |
| 1274 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1271 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1275 // | 1272 // |
| 1276 // You were going to just dump your switches here, weren't you? Instead, please | 1273 // You were going to just dump your switches here, weren't you? Instead, please |
| 1277 // put them in alphabetical order above, or in order inside the appropriate | 1274 // put them in alphabetical order above, or in order inside the appropriate |
| 1278 // ifdef at the bottom. The order should match the header. | 1275 // ifdef at the bottom. The order should match the header. |
| 1279 // ----------------------------------------------------------------------------- | 1276 // ----------------------------------------------------------------------------- |
| 1280 | 1277 |
| 1281 } // namespace switches | 1278 } // namespace switches |
| OLD | NEW |