| 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 // thread, including APC count, object signalling count, etc. | 880 // thread, including APC count, object signalling count, etc. |
| 881 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; | 881 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; |
| 882 | 882 |
| 883 // Enables the recording of metrics reports but disables reporting. In contrast | 883 // Enables the recording of metrics reports but disables reporting. In contrast |
| 884 // to kDisableMetrics, this executes all the code that a normal client would | 884 // to kDisableMetrics, this executes all the code that a normal client would |
| 885 // use for reporting, except the report is dropped rather than sent to the | 885 // use for reporting, except the report is dropped rather than sent to the |
| 886 // server. This is useful for finding issues in the metrics code during UI and | 886 // server. This is useful for finding issues in the metrics code during UI and |
| 887 // performance tests. | 887 // performance tests. |
| 888 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 888 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
| 889 | 889 |
| 890 // Enables multiprofile Chrome. | |
| 891 const char kMultiProfiles[] = "multi-profiles"; | |
| 892 | |
| 893 // Sets the base logging level for the net log. Log 0 logs the most data. | 890 // Sets the base logging level for the net log. Log 0 logs the most data. |
| 894 // Intended primarily for use with --log-net-log. | 891 // Intended primarily for use with --log-net-log. |
| 895 const char kNetLogLevel[] = "net-log-level"; | 892 const char kNetLogLevel[] = "net-log-level"; |
| 896 | 893 |
| 897 // Disables the default browser check. Useful for UI/browser tests where we | 894 // Disables the default browser check. Useful for UI/browser tests where we |
| 898 // want to avoid having the default browser info-bar displayed. | 895 // want to avoid having the default browser info-bar displayed. |
| 899 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; | 896 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; |
| 900 | 897 |
| 901 // By default, an https page can load images, fonts or frames from an http | 898 // By default, an https page can load images, fonts or frames from an http |
| 902 // page. This switch overrides this to block this lesser mixed-content problem. | 899 // page. This switch overrides this to block this lesser mixed-content problem. |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1459 | 1456 |
| 1460 // ----------------------------------------------------------------------------- | 1457 // ----------------------------------------------------------------------------- |
| 1461 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1458 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1462 // | 1459 // |
| 1463 // You were going to just dump your switches here, weren't you? Instead, please | 1460 // You were going to just dump your switches here, weren't you? Instead, please |
| 1464 // put them in alphabetical order above, or in order inside the appropriate | 1461 // put them in alphabetical order above, or in order inside the appropriate |
| 1465 // ifdef at the bottom. The order should match the header. | 1462 // ifdef at the bottom. The order should match the header. |
| 1466 // ----------------------------------------------------------------------------- | 1463 // ----------------------------------------------------------------------------- |
| 1467 | 1464 |
| 1468 } // namespace switches | 1465 } // namespace switches |
| OLD | NEW |