| 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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 const char kShowFPSCounter[] = "show-fps-counter"; | 884 const char kShowFPSCounter[] = "show-fps-counter"; |
| 885 | 885 |
| 886 // Change the DCHECKS to dump memory and continue instead of displaying error | 886 // Change the DCHECKS to dump memory and continue instead of displaying error |
| 887 // dialog. This is valid only in Release mode when --enable-dcheck is | 887 // dialog. This is valid only in Release mode when --enable-dcheck is |
| 888 // specified. | 888 // specified. |
| 889 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 889 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 890 | 890 |
| 891 // Replaces the buffered data source for <audio> and <video> with a simplified | 891 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 892 // resource loader that downloads the entire resource into memory. | 892 // resource loader that downloads the entire resource into memory. |
| 893 | 893 |
| 894 // Choose the socket reuse policy specified. The value should be of type |
| 895 // enum ClientSocketReusePolicy. |
| 896 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
| 897 |
| 894 // Start the browser maximized, regardless of any previous settings. | 898 // Start the browser maximized, regardless of any previous settings. |
| 895 const char kStartMaximized[] = "start-maximized"; | 899 const char kStartMaximized[] = "start-maximized"; |
| 896 | 900 |
| 897 // Allow insecure XMPP connections for sync (for testing). | 901 // Allow insecure XMPP connections for sync (for testing). |
| 898 const char kSyncAllowInsecureXmppConnection[] = | 902 const char kSyncAllowInsecureXmppConnection[] = |
| 899 "sync-allow-insecure-xmpp-connection"; | 903 "sync-allow-insecure-xmpp-connection"; |
| 900 | 904 |
| 901 // Invalidate any login info passed into sync's XMPP connection. | 905 // Invalidate any login info passed into sync's XMPP connection. |
| 902 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 906 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
| 903 | 907 |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 | 1155 |
| 1152 // ----------------------------------------------------------------------------- | 1156 // ----------------------------------------------------------------------------- |
| 1153 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1157 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1154 // | 1158 // |
| 1155 // You were going to just dump your switches here, weren't you? Instead, | 1159 // You were going to just dump your switches here, weren't you? Instead, |
| 1156 // please put them in alphabetical order above, or in order inside the | 1160 // please put them in alphabetical order above, or in order inside the |
| 1157 // appropriate ifdef at the bottom. The order should match the header. | 1161 // appropriate ifdef at the bottom. The order should match the header. |
| 1158 // ----------------------------------------------------------------------------- | 1162 // ----------------------------------------------------------------------------- |
| 1159 | 1163 |
| 1160 } // namespace switches | 1164 } // namespace switches |
| OLD | NEW |