| 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 // layer compositing. | 1065 // layer compositing. |
| 1066 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; | 1066 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; |
| 1067 | 1067 |
| 1068 // Draws a textual dump of the compositor layer tree to help debug and study | 1068 // Draws a textual dump of the compositor layer tree to help debug and study |
| 1069 // layer compositing. | 1069 // layer compositing. |
| 1070 const char kShowCompositedLayerTree[] = "show-composited-layer-tree"; | 1070 const char kShowCompositedLayerTree[] = "show-composited-layer-tree"; |
| 1071 | 1071 |
| 1072 // Draws a FPS indicator | 1072 // Draws a FPS indicator |
| 1073 const char kShowFPSCounter[] = "show-fps-counter"; | 1073 const char kShowFPSCounter[] = "show-fps-counter"; |
| 1074 | 1074 |
| 1075 // Show volume controls in status bar on chromeos. |
| 1076 const char kShowVolumeStatus[] = "show-volume-status"; |
| 1077 |
| 1075 // Changes the DCHECKS to dump memory and continue instead of displaying error | 1078 // Changes the DCHECKS to dump memory and continue instead of displaying error |
| 1076 // dialog. This is valid only in Release mode when --enable-dcheck is | 1079 // dialog. This is valid only in Release mode when --enable-dcheck is |
| 1077 // specified. | 1080 // specified. |
| 1078 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 1081 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 1079 | 1082 |
| 1080 // Replaces the buffered data source for <audio> and <video> with a simplified | 1083 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 1081 // resource loader that downloads the entire resource into memory. | 1084 // resource loader that downloads the entire resource into memory. |
| 1082 | 1085 |
| 1083 // Socket reuse policy. The value should be of type enum | 1086 // Socket reuse policy. The value should be of type enum |
| 1084 // ClientSocketReusePolicy. | 1087 // ClientSocketReusePolicy. |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 | 1370 |
| 1368 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
| 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1370 // | 1373 // |
| 1371 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
| 1372 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
| 1373 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
| 1374 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1375 | 1378 |
| 1376 } // namespace switches | 1379 } // namespace switches |
| OLD | NEW |