| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 // Enable experimental timeline API. | 433 // Enable experimental timeline API. |
| 434 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 434 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 435 | 435 |
| 436 // Enable the fastback page cache. | 436 // Enable the fastback page cache. |
| 437 const char kEnableFastback[] = "enable-fastback"; | 437 const char kEnableFastback[] = "enable-fastback"; |
| 438 | 438 |
| 439 // By default, cookies are not allowed on file://. They are needed for | 439 // By default, cookies are not allowed on file://. They are needed for |
| 440 // testing, for example page cycler and layout tests. See bug 1157243. | 440 // testing, for example page cycler and layout tests. See bug 1157243. |
| 441 const char kEnableFileCookies[] = "enable-file-cookies"; | 441 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 442 | 442 |
| 443 // Enable the JavaScript Full Screen API. | |
| 444 const char kEnableFullScreen[] = "enable-fullscreen"; | |
| 445 | |
| 446 // Enable the in-browser thumbnailing, which is more efficient than the | 443 // Enable the in-browser thumbnailing, which is more efficient than the |
| 447 // in-renderer thumbnailing, as we can use more information to determine | 444 // in-renderer thumbnailing, as we can use more information to determine |
| 448 // if we need to update thumbnails. | 445 // if we need to update thumbnails. |
| 449 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 446 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 450 | 447 |
| 451 // Enables web developers to initiate inline installation of Chrome Web Store | 448 // Enables web developers to initiate inline installation of Chrome Web Store |
| 452 // items. | 449 // items. |
| 453 const char kEnableInlineWebstoreInstall[] = "enable-inline-webstore-install"; | 450 const char kEnableInlineWebstoreInstall[] = "enable-inline-webstore-install"; |
| 454 | 451 |
| 455 // Enable IPv6 support, even if probes suggest that it may not be fully | 452 // Enable IPv6 support, even if probes suggest that it may not be fully |
| (...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1245 | 1242 |
| 1246 // ----------------------------------------------------------------------------- | 1243 // ----------------------------------------------------------------------------- |
| 1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1244 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1248 // | 1245 // |
| 1249 // You were going to just dump your switches here, weren't you? Instead, | 1246 // You were going to just dump your switches here, weren't you? Instead, |
| 1250 // please put them in alphabetical order above, or in order inside the | 1247 // please put them in alphabetical order above, or in order inside the |
| 1251 // appropriate ifdef at the bottom. The order should match the header. | 1248 // appropriate ifdef at the bottom. The order should match the header. |
| 1252 // ----------------------------------------------------------------------------- | 1249 // ----------------------------------------------------------------------------- |
| 1253 | 1250 |
| 1254 } // namespace switches | 1251 } // namespace switches |
| OLD | NEW |