| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 // Only auto-reload error pages when the tab is visible. | 473 // Only auto-reload error pages when the tab is visible. |
| 474 const char kEnableOfflineAutoReloadVisibleOnly[] = | 474 const char kEnableOfflineAutoReloadVisibleOnly[] = |
| 475 "enable-offline-auto-reload-visible-only"; | 475 "enable-offline-auto-reload-visible-only"; |
| 476 | 476 |
| 477 // Enables panels (always on-top docked pop-up windows). | 477 // Enables panels (always on-top docked pop-up windows). |
| 478 const char kEnablePanels[] = "enable-panels"; | 478 const char kEnablePanels[] = "enable-panels"; |
| 479 | 479 |
| 480 // Enable the new material UI - requires out of process PDF plugin. | 480 // Enable the new material UI - requires out of process PDF plugin. |
| 481 const char kEnablePdfMaterialUI[] = "enable-pdf-material-ui"; | 481 const char kEnablePdfMaterialUI[] = "enable-pdf-material-ui"; |
| 482 | 482 |
| 483 // Enables presenting plugin placeholder content as shadow DOM. | |
| 484 const char kEnablePluginPlaceholderShadowDom[] = | |
| 485 "enable-plugin-placeholder-shadow-dom"; | |
| 486 | |
| 487 // Enables a number of potentially annoying security features (strict mixed | 483 // Enables a number of potentially annoying security features (strict mixed |
| 488 // content mode, powerful feature restrictions, etc.) | 484 // content mode, powerful feature restrictions, etc.) |
| 489 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = | 485 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = |
| 490 "enable-potentially-annoying-security-features"; | 486 "enable-potentially-annoying-security-features"; |
| 491 | 487 |
| 492 // Enables the Power overlay in Settings. | 488 // Enables the Power overlay in Settings. |
| 493 const char kEnablePowerOverlay[] = "enable-power-overlay"; | 489 const char kEnablePowerOverlay[] = "enable-power-overlay"; |
| 494 | 490 |
| 495 // Enables showing unregistered printers in print preview | 491 // Enables showing unregistered printers in print preview |
| 496 const char kEnablePrintPreviewRegisterPromos[] = | 492 const char kEnablePrintPreviewRegisterPromos[] = |
| (...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 | 1418 |
| 1423 // ----------------------------------------------------------------------------- | 1419 // ----------------------------------------------------------------------------- |
| 1424 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1420 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1425 // | 1421 // |
| 1426 // You were going to just dump your switches here, weren't you? Instead, please | 1422 // You were going to just dump your switches here, weren't you? Instead, please |
| 1427 // put them in alphabetical order above, or in order inside the appropriate | 1423 // put them in alphabetical order above, or in order inside the appropriate |
| 1428 // ifdef at the bottom. The order should match the header. | 1424 // ifdef at the bottom. The order should match the header. |
| 1429 // ----------------------------------------------------------------------------- | 1425 // ----------------------------------------------------------------------------- |
| 1430 | 1426 |
| 1431 } // namespace switches | 1427 } // namespace switches |
| OLD | NEW |