| 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 const char kShowFPSCounter[] = "show-fps-counter"; | 916 const char kShowFPSCounter[] = "show-fps-counter"; |
| 917 | 917 |
| 918 // Change the DCHECKS to dump memory and continue instead of displaying error | 918 // Change the DCHECKS to dump memory and continue instead of displaying error |
| 919 // dialog. This is valid only in Release mode when --enable-dcheck is | 919 // dialog. This is valid only in Release mode when --enable-dcheck is |
| 920 // specified. | 920 // specified. |
| 921 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 921 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 922 | 922 |
| 923 // Replaces the buffered data source for <audio> and <video> with a simplified | 923 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 924 // resource loader that downloads the entire resource into memory. | 924 // resource loader that downloads the entire resource into memory. |
| 925 | 925 |
| 926 // Choose the socket reuse policy specified. The value should be of type | |
| 927 // enum ClientSocketReusePolicy. | |
| 928 const char kSocketReusePolicy[] = "socket-reuse-policy"; | |
| 929 | |
| 930 // Start the browser maximized, regardless of any previous settings. | 926 // Start the browser maximized, regardless of any previous settings. |
| 931 const char kStartMaximized[] = "start-maximized"; | 927 const char kStartMaximized[] = "start-maximized"; |
| 932 | 928 |
| 933 // Allow insecure XMPP connections for sync (for testing). | 929 // Allow insecure XMPP connections for sync (for testing). |
| 934 const char kSyncAllowInsecureXmppConnection[] = | 930 const char kSyncAllowInsecureXmppConnection[] = |
| 935 "sync-allow-insecure-xmpp-connection"; | 931 "sync-allow-insecure-xmpp-connection"; |
| 936 | 932 |
| 937 // Invalidate any login info passed into sync's XMPP connection. | 933 // Invalidate any login info passed into sync's XMPP connection. |
| 938 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 934 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
| 939 | 935 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1194 | 1190 |
| 1195 // ----------------------------------------------------------------------------- | 1191 // ----------------------------------------------------------------------------- |
| 1196 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1192 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1197 // | 1193 // |
| 1198 // You were going to just dump your switches here, weren't you? Instead, | 1194 // You were going to just dump your switches here, weren't you? Instead, |
| 1199 // please put them in alphabetical order above, or in order inside the | 1195 // please put them in alphabetical order above, or in order inside the |
| 1200 // appropriate ifdef at the bottom. The order should match the header. | 1196 // appropriate ifdef at the bottom. The order should match the header. |
| 1201 // ----------------------------------------------------------------------------- | 1197 // ----------------------------------------------------------------------------- |
| 1202 | 1198 |
| 1203 } // namespace switches | 1199 } // namespace switches |
| OLD | NEW |