| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 const char kEnableAlternativeServices[] = "enable-alternative-services"; | 508 const char kEnableAlternativeServices[] = "enable-alternative-services"; |
| 509 | 509 |
| 510 // Enables using bubbles for session restore request instead of infobars. | 510 // Enables using bubbles for session restore request instead of infobars. |
| 511 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 511 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 512 | 512 |
| 513 // Enable or disable settings in a separate browser window per profile | 513 // Enable or disable settings in a separate browser window per profile |
| 514 // (see SettingsWindowEnabled() below). | 514 // (see SettingsWindowEnabled() below). |
| 515 const char kEnableSettingsWindow[] = "enable-settings-window"; | 515 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 516 const char kDisableSettingsWindow[] = "disable-settings-window"; | 516 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| 517 | 517 |
| 518 // A new user experience for transitioning into fullscreen and mouse pointer | |
| 519 // lock states. | |
| 520 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; | |
| 521 const char kDisableSimplifiedFullscreenUI[] = | |
| 522 "disable-simplified-fullscreen-ui"; | |
| 523 | |
| 524 // Enable the Site Engagement App Banner which triggers app install banners | 518 // Enable the Site Engagement App Banner which triggers app install banners |
| 525 // using the site engagement service rather than a navigation-based heuristic. | 519 // using the site engagement service rather than a navigation-based heuristic. |
| 526 // Implicitly enables the site engagement service. | 520 // Implicitly enables the site engagement service. |
| 527 const char kEnableSiteEngagementAppBanner[] = | 521 const char kEnableSiteEngagementAppBanner[] = |
| 528 "enable-site-engagement-app-banner"; | 522 "enable-site-engagement-app-banner"; |
| 529 | 523 |
| 530 // Enable the Site Engagement Eviction Policy which evicts temporary storage | 524 // Enable the Site Engagement Eviction Policy which evicts temporary storage |
| 531 // using the site engagement service. Implicitly enables the site engagement | 525 // using the site engagement service. Implicitly enables the site engagement |
| 532 // service. | 526 // service. |
| 533 const char kEnableSiteEngagementEvictionPolicy[] = | 527 const char kEnableSiteEngagementEvictionPolicy[] = |
| (...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 | 1377 |
| 1384 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
| 1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1386 // | 1380 // |
| 1387 // You were going to just dump your switches here, weren't you? Instead, please | 1381 // You were going to just dump your switches here, weren't you? Instead, please |
| 1388 // put them in alphabetical order above, or in order inside the appropriate | 1382 // put them in alphabetical order above, or in order inside the appropriate |
| 1389 // ifdef at the bottom. The order should match the header. | 1383 // ifdef at the bottom. The order should match the header. |
| 1390 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1391 | 1385 |
| 1392 } // namespace switches | 1386 } // namespace switches |
| OLD | NEW |