| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 // Enable experimental timeline API. | 181 // Enable experimental timeline API. |
| 182 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 182 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 183 | 183 |
| 184 // Enable the fastback page cache. | 184 // Enable the fastback page cache. |
| 185 const char kEnableFastback[] = "enable-fastback"; | 185 const char kEnableFastback[] = "enable-fastback"; |
| 186 | 186 |
| 187 // By default, cookies are not allowed on file://. They are needed in for | 187 // By default, cookies are not allowed on file://. They are needed in for |
| 188 // testing, for example page cycler and layout tests. See bug 1157243. | 188 // testing, for example page cycler and layout tests. See bug 1157243. |
| 189 const char kEnableFileCookies[] = "enable-file-cookies"; | 189 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 190 | 190 |
| 191 // Enable local storage. Still buggy. | 191 // Disable LocalStorage. |
| 192 const char kEnableLocalStorage[] = "enable-local-storage"; | 192 const char kDisableLocalStorage[] = "disable-local-storage"; |
| 193 | 193 |
| 194 // Force logging to be enabled. Logging is disabled by default in release | 194 // Force logging to be enabled. Logging is disabled by default in release |
| 195 // builds. | 195 // builds. |
| 196 const char kEnableLogging[] = "enable-logging"; | 196 const char kEnableLogging[] = "enable-logging"; |
| 197 | 197 |
| 198 // On Windows, converts the page to the currently-installed monitor profile. | 198 // On Windows, converts the page to the currently-installed monitor profile. |
| 199 // This does NOT enable color management for images. The source is still | 199 // This does NOT enable color management for images. The source is still |
| 200 // assumed to be sRGB. | 200 // assumed to be sRGB. |
| 201 const char kEnableMonitorProfile[] = "enable-monitor-profile"; | 201 const char kEnableMonitorProfile[] = "enable-monitor-profile"; |
| 202 | 202 |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 // | 683 // |
| 684 // You were going to just dump your switches here, weren't you? Instead, | 684 // You were going to just dump your switches here, weren't you? Instead, |
| 685 // please put them in alphabetical order above, or in order inside the | 685 // please put them in alphabetical order above, or in order inside the |
| 686 // appropriate ifdef at the bottom. The order should match the header. | 686 // appropriate ifdef at the bottom. The order should match the header. |
| 687 // ----------------------------------------------------------------------------- | 687 // ----------------------------------------------------------------------------- |
| 688 | 688 |
| 689 // Enable AutoFill++. | 689 // Enable AutoFill++. |
| 690 const char kEnableNewAutoFill[] = "enable-new-autofill"; | 690 const char kEnableNewAutoFill[] = "enable-new-autofill"; |
| 691 | 691 |
| 692 } // namespace switches | 692 } // namespace switches |
| OLD | NEW |