| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 // Enable the fastback page cache. | 197 // Enable the fastback page cache. |
| 198 const char kEnableFastback[] = "enable-fastback"; | 198 const char kEnableFastback[] = "enable-fastback"; |
| 199 | 199 |
| 200 // By default, cookies are not allowed on file://. They are needed for | 200 // By default, cookies are not allowed on file://. They are needed for |
| 201 // testing, for example page cycler and layout tests. See bug 1157243. | 201 // testing, for example page cycler and layout tests. See bug 1157243. |
| 202 const char kEnableFileCookies[] = "enable-file-cookies"; | 202 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 203 | 203 |
| 204 // Enable Geolocation support. | 204 // Enable Geolocation support. |
| 205 const char kEnableGeolocation[] = "enable-geolocation"; | 205 const char kEnableGeolocation[] = "enable-geolocation"; |
| 206 | 206 |
| 207 // Enable the GPU plugin and Pepper 3D rendering. |
| 208 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
| 209 |
| 207 // Disable LocalStorage. | 210 // Disable LocalStorage. |
| 208 const char kDisableLocalStorage[] = "disable-local-storage"; | 211 const char kDisableLocalStorage[] = "disable-local-storage"; |
| 209 | 212 |
| 210 // Force logging to be enabled. Logging is disabled by default in release | 213 // Force logging to be enabled. Logging is disabled by default in release |
| 211 // builds. | 214 // builds. |
| 212 const char kEnableLogging[] = "enable-logging"; | 215 const char kEnableLogging[] = "enable-logging"; |
| 213 | 216 |
| 214 // On Windows, converts the page to the currently-installed monitor profile. | 217 // On Windows, converts the page to the currently-installed monitor profile. |
| 215 // This does NOT enable color management for images. The source is still | 218 // This does NOT enable color management for images. The source is still |
| 216 // assumed to be sRGB. | 219 // assumed to be sRGB. |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 736 |
| 734 // ----------------------------------------------------------------------------- | 737 // ----------------------------------------------------------------------------- |
| 735 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 738 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 736 // | 739 // |
| 737 // You were going to just dump your switches here, weren't you? Instead, | 740 // You were going to just dump your switches here, weren't you? Instead, |
| 738 // please put them in alphabetical order above, or in order inside the | 741 // please put them in alphabetical order above, or in order inside the |
| 739 // appropriate ifdef at the bottom. The order should match the header. | 742 // appropriate ifdef at the bottom. The order should match the header. |
| 740 // ----------------------------------------------------------------------------- | 743 // ----------------------------------------------------------------------------- |
| 741 | 744 |
| 742 } // namespace switches | 745 } // namespace switches |
| OLD | NEW |