| 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 const char kEnableExperimentalExtensionApis[] = | 515 const char kEnableExperimentalExtensionApis[] = |
| 516 "enable-experimental-extension-apis"; | 516 "enable-experimental-extension-apis"; |
| 517 | 517 |
| 518 // Enables logging for extension activity. | 518 // Enables logging for extension activity. |
| 519 const char kEnableExtensionActivityLogging[] = | 519 const char kEnableExtensionActivityLogging[] = |
| 520 "enable-extension-activity-logging"; | 520 "enable-extension-activity-logging"; |
| 521 | 521 |
| 522 // Enables the extension activity UI. | 522 // Enables the extension activity UI. |
| 523 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; | 523 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; |
| 524 | 524 |
| 525 // Enables to show extensions in an action box. |
| 526 const char kEnableExtensionsInActionBox[] = "extensions-in-action-box"; |
| 527 |
| 525 // Enables experimental timeline API. | 528 // Enables experimental timeline API. |
| 526 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 529 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 527 | 530 |
| 528 // Applies a new frameless window style to any dialog based on | 531 // Applies a new frameless window style to any dialog based on |
| 529 // ConstrainedWindowViews. | 532 // ConstrainedWindowViews. |
| 530 const char kEnableFramelessConstrainedDialogs[] = | 533 const char kEnableFramelessConstrainedDialogs[] = |
| 531 "enable-frameless-constrained-dialogs"; | 534 "enable-frameless-constrained-dialogs"; |
| 532 | 535 |
| 533 // By default, cookies are not allowed on file://. They are needed for testing, | 536 // By default, cookies are not allowed on file://. They are needed for testing, |
| 534 // for example page cycler and layout tests. See bug 1157243. | 537 // for example page cycler and layout tests. See bug 1157243. |
| (...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1561 | 1564 |
| 1562 // ----------------------------------------------------------------------------- | 1565 // ----------------------------------------------------------------------------- |
| 1563 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1564 // | 1567 // |
| 1565 // You were going to just dump your switches here, weren't you? Instead, please | 1568 // You were going to just dump your switches here, weren't you? Instead, please |
| 1566 // put them in alphabetical order above, or in order inside the appropriate | 1569 // put them in alphabetical order above, or in order inside the appropriate |
| 1567 // ifdef at the bottom. The order should match the header. | 1570 // ifdef at the bottom. The order should match the header. |
| 1568 // ----------------------------------------------------------------------------- | 1571 // ----------------------------------------------------------------------------- |
| 1569 | 1572 |
| 1570 } // namespace switches | 1573 } // namespace switches |
| OLD | NEW |