| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 // thread, including APC count, object signalling count, etc. | 752 // thread, including APC count, object signalling count, etc. |
| 753 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; | 753 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; |
| 754 | 754 |
| 755 // Enables the recording of metrics reports but disables reporting. In contrast | 755 // Enables the recording of metrics reports but disables reporting. In contrast |
| 756 // to kDisableMetrics, this executes all the code that a normal client would | 756 // to kDisableMetrics, this executes all the code that a normal client would |
| 757 // use for reporting, except the report is dropped rather than sent to the | 757 // use for reporting, except the report is dropped rather than sent to the |
| 758 // server. This is useful for finding issues in the metrics code during UI and | 758 // server. This is useful for finding issues in the metrics code during UI and |
| 759 // performance tests. | 759 // performance tests. |
| 760 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 760 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
| 761 | 761 |
| 762 // The minimum version of Flash that implements the NPP_ClearSiteData API. | |
| 763 const char kMinClearSiteDataFlashVersion[] = "min-clearsitedata-flash-version"; | |
| 764 | |
| 765 // Enables multiprofile Chrome. | 762 // Enables multiprofile Chrome. |
| 766 const char kMultiProfiles[] = "multi-profiles"; | 763 const char kMultiProfiles[] = "multi-profiles"; |
| 767 | 764 |
| 768 // Sets the default IP address (interface) for the stub (normally 127.0.0.1). | 765 // Sets the default IP address (interface) for the stub (normally 127.0.0.1). |
| 769 const char kNaClDebugIP[] = "nacl-debug-ip"; | 766 const char kNaClDebugIP[] = "nacl-debug-ip"; |
| 770 | 767 |
| 771 // Sets the default port range for debugging. | 768 // Sets the default port range for debugging. |
| 772 const char kNaClDebugPorts[] = "nacl-debug-ports"; | 769 const char kNaClDebugPorts[] = "nacl-debug-ports"; |
| 773 | 770 |
| 774 // On POSIX only: the contents of this flag are prepended to the nacl-loader | 771 // On POSIX only: the contents of this flag are prepended to the nacl-loader |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 | 1294 |
| 1298 // ----------------------------------------------------------------------------- | 1295 // ----------------------------------------------------------------------------- |
| 1299 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1296 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1300 // | 1297 // |
| 1301 // You were going to just dump your switches here, weren't you? Instead, please | 1298 // You were going to just dump your switches here, weren't you? Instead, please |
| 1302 // put them in alphabetical order above, or in order inside the appropriate | 1299 // put them in alphabetical order above, or in order inside the appropriate |
| 1303 // ifdef at the bottom. The order should match the header. | 1300 // ifdef at the bottom. The order should match the header. |
| 1304 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
| 1305 | 1302 |
| 1306 } // namespace switches | 1303 } // namespace switches |
| OLD | NEW |