| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 // We're using independent flags here (as opposed to a common flag with | 570 // We're using independent flags here (as opposed to a common flag with |
| 571 // different values) to be able to enable/disable the entire experience | 571 // different values) to be able to enable/disable the entire experience |
| 572 // associated with this feature server-side from the FieldTrial (the complete | 572 // associated with this feature server-side from the FieldTrial (the complete |
| 573 // experience includes other flag changes as well). It is not currently possible | 573 // experience includes other flag changes as well). It is not currently possible |
| 574 // to do that with "flag=value" flags. | 574 // to do that with "flag=value" flags. |
| 575 const char kEnableOriginChipV2[] = "enable-origin-chip-v2"; | 575 const char kEnableOriginChipV2[] = "enable-origin-chip-v2"; |
| 576 const char kEnableOriginChipV2HideOnMouseRelease[] = | 576 const char kEnableOriginChipV2HideOnMouseRelease[] = |
| 577 "enable-origin-chip-v2-hide-on-mouse-release"; | 577 "enable-origin-chip-v2-hide-on-mouse-release"; |
| 578 const char kEnableOriginChipV2HideOnUserInput[] = | 578 const char kEnableOriginChipV2HideOnUserInput[] = |
| 579 "enable-origin-chip-v2-hide-on-user-input"; | 579 "enable-origin-chip-v2-hide-on-user-input"; |
| 580 const char kEnableOriginChipV2OnSrp[] = "enable-origin-chip-v2-on-srp"; |
| 580 | 581 |
| 581 // Enables panels (always on-top docked pop-up windows). | 582 // Enables panels (always on-top docked pop-up windows). |
| 582 const char kEnablePanels[] = "enable-panels"; | 583 const char kEnablePanels[] = "enable-panels"; |
| 583 | 584 |
| 584 // Enables showing unregistered printers in print preview | 585 // Enables showing unregistered printers in print preview |
| 585 const char kEnablePrintPreviewRegisterPromos[] = | 586 const char kEnablePrintPreviewRegisterPromos[] = |
| 586 "enable-print-preview-register-promos"; | 587 "enable-print-preview-register-promos"; |
| 587 | 588 |
| 588 // Enable Privet storage. | 589 // Enable Privet storage. |
| 589 const char kEnablePrivetStorage[] = "enable-privet-storage"; | 590 const char kEnablePrivetStorage[] = "enable-privet-storage"; |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 | 1466 |
| 1466 // ----------------------------------------------------------------------------- | 1467 // ----------------------------------------------------------------------------- |
| 1467 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1468 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1468 // | 1469 // |
| 1469 // You were going to just dump your switches here, weren't you? Instead, please | 1470 // You were going to just dump your switches here, weren't you? Instead, please |
| 1470 // put them in alphabetical order above, or in order inside the appropriate | 1471 // put them in alphabetical order above, or in order inside the appropriate |
| 1471 // ifdef at the bottom. The order should match the header. | 1472 // ifdef at the bottom. The order should match the header. |
| 1472 // ----------------------------------------------------------------------------- | 1473 // ----------------------------------------------------------------------------- |
| 1473 | 1474 |
| 1474 } // namespace switches | 1475 } // namespace switches |
| OLD | NEW |