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