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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 const char kShowFPSCounter[] = "show-fps-counter"; | 909 const char kShowFPSCounter[] = "show-fps-counter"; |
910 | 910 |
911 // Change the DCHECKS to dump memory and continue instead of displaying error | 911 // Change the DCHECKS to dump memory and continue instead of displaying error |
912 // dialog. This is valid only in Release mode when --enable-dcheck is | 912 // dialog. This is valid only in Release mode when --enable-dcheck is |
913 // specified. | 913 // specified. |
914 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 914 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
915 | 915 |
916 // Replaces the buffered data source for <audio> and <video> with a simplified | 916 // Replaces the buffered data source for <audio> and <video> with a simplified |
917 // resource loader that downloads the entire resource into memory. | 917 // resource loader that downloads the entire resource into memory. |
918 | 918 |
| 919 // Choose the socket reuse policy specified. The value should be of type |
| 920 // enum ClientSocketReusePolicy. |
| 921 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
| 922 |
919 // Start the browser maximized, regardless of any previous settings. | 923 // Start the browser maximized, regardless of any previous settings. |
920 const char kStartMaximized[] = "start-maximized"; | 924 const char kStartMaximized[] = "start-maximized"; |
921 | 925 |
922 // Allow insecure XMPP connections for sync (for testing). | 926 // Allow insecure XMPP connections for sync (for testing). |
923 const char kSyncAllowInsecureXmppConnection[] = | 927 const char kSyncAllowInsecureXmppConnection[] = |
924 "sync-allow-insecure-xmpp-connection"; | 928 "sync-allow-insecure-xmpp-connection"; |
925 | 929 |
926 // Invalidate any login info passed into sync's XMPP connection. | 930 // Invalidate any login info passed into sync's XMPP connection. |
927 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 931 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
928 | 932 |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 | 1180 |
1177 // ----------------------------------------------------------------------------- | 1181 // ----------------------------------------------------------------------------- |
1178 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1182 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1179 // | 1183 // |
1180 // You were going to just dump your switches here, weren't you? Instead, | 1184 // You were going to just dump your switches here, weren't you? Instead, |
1181 // please put them in alphabetical order above, or in order inside the | 1185 // please put them in alphabetical order above, or in order inside the |
1182 // appropriate ifdef at the bottom. The order should match the header. | 1186 // appropriate ifdef at the bottom. The order should match the header. |
1183 // ----------------------------------------------------------------------------- | 1187 // ----------------------------------------------------------------------------- |
1184 | 1188 |
1185 } // namespace switches | 1189 } // namespace switches |
OLD | NEW |