| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 // Causes the process to run as a NativeClient broker | 552 // Causes the process to run as a NativeClient broker |
| 553 // (used for launching NaCl loader processes on 64-bit Windows). | 553 // (used for launching NaCl loader processes on 64-bit Windows). |
| 554 const char kNaClBrokerProcess[] = "nacl-broker"; | 554 const char kNaClBrokerProcess[] = "nacl-broker"; |
| 555 | 555 |
| 556 // Causes the process to run as a NativeClient loader. | 556 // Causes the process to run as a NativeClient loader. |
| 557 const char kNaClLoaderProcess[] = "nacl-loader"; | 557 const char kNaClLoaderProcess[] = "nacl-loader"; |
| 558 | 558 |
| 559 // Causes the Native Client process to display a dialog on launch. | 559 // Causes the Native Client process to display a dialog on launch. |
| 560 const char kNaClStartupDialog[] = "nacl-startup-dialog"; | 560 const char kNaClStartupDialog[] = "nacl-startup-dialog"; |
| 561 | 561 |
| 562 // Allows the new tab page resource to be loaded from a local HTML file. This | |
| 563 // should be a path to the HTML file that you want to use for the new tab page. | |
| 564 // It is used for manually testing new versions of the new tab page only, | |
| 565 // performance will be poor. | |
| 566 const char kNewTabPage[] = "new-tab-page"; | |
| 567 | |
| 568 // Uses the new unified app menu instead of the old "page/app" split menus. | 562 // Uses the new unified app menu instead of the old "page/app" split menus. |
| 569 const char kNewWrenchMenu[] = "new-wrench-menu"; | 563 const char kNewWrenchMenu[] = "new-wrench-menu"; |
| 570 | 564 |
| 571 // Disables the default browser check. Useful for UI/browser tests where we | 565 // Disables the default browser check. Useful for UI/browser tests where we |
| 572 // want to avoid having the default browser info-bar displayed. | 566 // want to avoid having the default browser info-bar displayed. |
| 573 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; | 567 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; |
| 574 | 568 |
| 575 // Don't record/playback events when using record & playback. | 569 // Don't record/playback events when using record & playback. |
| 576 const char kNoEvents[] = "no-events"; | 570 const char kNoEvents[] = "no-events"; |
| 577 | 571 |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 | 1003 |
| 1010 // ----------------------------------------------------------------------------- | 1004 // ----------------------------------------------------------------------------- |
| 1011 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1005 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1012 // | 1006 // |
| 1013 // You were going to just dump your switches here, weren't you? Instead, | 1007 // You were going to just dump your switches here, weren't you? Instead, |
| 1014 // please put them in alphabetical order above, or in order inside the | 1008 // please put them in alphabetical order above, or in order inside the |
| 1015 // appropriate ifdef at the bottom. The order should match the header. | 1009 // appropriate ifdef at the bottom. The order should match the header. |
| 1016 // ----------------------------------------------------------------------------- | 1010 // ----------------------------------------------------------------------------- |
| 1017 | 1011 |
| 1018 } // namespace switches | 1012 } // namespace switches |
| OLD | NEW |