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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 // Causes the process to run as a NativeClient broker | 832 // Causes the process to run as a NativeClient broker |
833 // (used for launching NaCl loader processes on 64-bit Windows). | 833 // (used for launching NaCl loader processes on 64-bit Windows). |
834 const char kNaClBrokerProcess[] = "nacl-broker"; | 834 const char kNaClBrokerProcess[] = "nacl-broker"; |
835 | 835 |
836 // Causes the process to run as a NativeClient loader. | 836 // Causes the process to run as a NativeClient loader. |
837 const char kNaClLoaderProcess[] = "nacl-loader"; | 837 const char kNaClLoaderProcess[] = "nacl-loader"; |
838 | 838 |
839 // Causes the Native Client process to display a dialog on launch. | 839 // Causes the Native Client process to display a dialog on launch. |
840 const char kNaClStartupDialog[] = "nacl-startup-dialog"; | 840 const char kNaClStartupDialog[] = "nacl-startup-dialog"; |
841 | 841 |
842 // Enables the new security model for "chrome" URLs. | |
843 const char kNewChromeUISecurityModel[] = "new-chrome-ui-security-model"; | |
844 | |
845 // Disables the default browser check. Useful for UI/browser tests where we | 842 // Disables the default browser check. Useful for UI/browser tests where we |
846 // want to avoid having the default browser info-bar displayed. | 843 // want to avoid having the default browser info-bar displayed. |
847 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; | 844 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; |
848 | 845 |
849 // Don't record/playback events when using record & playback. | 846 // Don't record/playback events when using record & playback. |
850 const char kNoEvents[] = "no-events"; | 847 const char kNoEvents[] = "no-events"; |
851 | 848 |
852 // Bypass the First Run experience when the browser is started, regardless of | 849 // Bypass the First Run experience when the browser is started, regardless of |
853 // Disables all experiments set on about:flags. Does not disable about:flags | 850 // Disables all experiments set on about:flags. Does not disable about:flags |
854 // itself. Useful if an experiment makes chrome crash at startup: One can start | 851 // itself. Useful if an experiment makes chrome crash at startup: One can start |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1391 | 1388 |
1392 // ----------------------------------------------------------------------------- | 1389 // ----------------------------------------------------------------------------- |
1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1390 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1394 // | 1391 // |
1395 // You were going to just dump your switches here, weren't you? Instead, | 1392 // You were going to just dump your switches here, weren't you? Instead, |
1396 // please put them in alphabetical order above, or in order inside the | 1393 // please put them in alphabetical order above, or in order inside the |
1397 // appropriate ifdef at the bottom. The order should match the header. | 1394 // appropriate ifdef at the bottom. The order should match the header. |
1398 // ----------------------------------------------------------------------------- | 1395 // ----------------------------------------------------------------------------- |
1399 | 1396 |
1400 } // namespace switches | 1397 } // namespace switches |
OLD | NEW |