| 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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 const char kShowFPSCounter[] = "show-fps-counter"; | 924 const char kShowFPSCounter[] = "show-fps-counter"; |
| 925 | 925 |
| 926 // Change the DCHECKS to dump memory and continue instead of displaying error | 926 // Change the DCHECKS to dump memory and continue instead of displaying error |
| 927 // dialog. This is valid only in Release mode when --enable-dcheck is | 927 // dialog. This is valid only in Release mode when --enable-dcheck is |
| 928 // specified. | 928 // specified. |
| 929 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 929 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 930 | 930 |
| 931 // Replaces the buffered data source for <audio> and <video> with a simplified | 931 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 932 // resource loader that downloads the entire resource into memory. | 932 // resource loader that downloads the entire resource into memory. |
| 933 | 933 |
| 934 // Choose the socket reuse policy specified. The value should be of type |
| 935 // enum ClientSocketReusePolicy. |
| 936 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
| 937 |
| 934 // Start the browser maximized, regardless of any previous settings. | 938 // Start the browser maximized, regardless of any previous settings. |
| 935 const char kStartMaximized[] = "start-maximized"; | 939 const char kStartMaximized[] = "start-maximized"; |
| 936 | 940 |
| 937 // Allow insecure XMPP connections for sync (for testing). | 941 // Allow insecure XMPP connections for sync (for testing). |
| 938 const char kSyncAllowInsecureXmppConnection[] = | 942 const char kSyncAllowInsecureXmppConnection[] = |
| 939 "sync-allow-insecure-xmpp-connection"; | 943 "sync-allow-insecure-xmpp-connection"; |
| 940 | 944 |
| 941 // Invalidate any login info passed into sync's XMPP connection. | 945 // Invalidate any login info passed into sync's XMPP connection. |
| 942 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 946 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
| 943 | 947 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 | 1210 |
| 1207 // ----------------------------------------------------------------------------- | 1211 // ----------------------------------------------------------------------------- |
| 1208 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1212 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1209 // | 1213 // |
| 1210 // You were going to just dump your switches here, weren't you? Instead, | 1214 // You were going to just dump your switches here, weren't you? Instead, |
| 1211 // please put them in alphabetical order above, or in order inside the | 1215 // please put them in alphabetical order above, or in order inside the |
| 1212 // appropriate ifdef at the bottom. The order should match the header. | 1216 // appropriate ifdef at the bottom. The order should match the header. |
| 1213 // ----------------------------------------------------------------------------- | 1217 // ----------------------------------------------------------------------------- |
| 1214 | 1218 |
| 1215 } // namespace switches | 1219 } // namespace switches |
| OLD | NEW |