| 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 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 // Enables the QUIC protocol. This is a temporary testing flag. | 422 // Enables the QUIC protocol. This is a temporary testing flag. |
| 423 const char kEnableQuic[] = "enable-quic"; | 423 const char kEnableQuic[] = "enable-quic"; |
| 424 | 424 |
| 425 // Switches 'Save as...' context and app menu labels to 'Download...'. | 425 // Switches 'Save as...' context and app menu labels to 'Download...'. |
| 426 const char kEnableSaveAsMenuLabelExperiment[] = "saveas-menu-label"; | 426 const char kEnableSaveAsMenuLabelExperiment[] = "saveas-menu-label"; |
| 427 | 427 |
| 428 // Enable settings in a separate browser window per profile | 428 // Enable settings in a separate browser window per profile |
| 429 // (see SettingsWindowEnabled() below). | 429 // (see SettingsWindowEnabled() below). |
| 430 const char kEnableSettingsWindow[] = "enable-settings-window"; | 430 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 431 | 431 |
| 432 // Enable the Site Engagement App Banner which triggers app install banners | |
| 433 // using the site engagement service rather than a navigation-based heuristic. | |
| 434 // Implicitly enables the site engagement service. | |
| 435 const char kEnableSiteEngagementAppBanner[] = | |
| 436 "enable-site-engagement-app-banner"; | |
| 437 | |
| 438 // Enable the Site Engagement Eviction Policy which evicts temporary storage | 432 // Enable the Site Engagement Eviction Policy which evicts temporary storage |
| 439 // using the site engagement service. Implicitly enables the site engagement | 433 // using the site engagement service. Implicitly enables the site engagement |
| 440 // service. | 434 // service. |
| 441 const char kEnableSiteEngagementEvictionPolicy[] = | 435 const char kEnableSiteEngagementEvictionPolicy[] = |
| 442 "enable-site-engagement-eviction-policy"; | 436 "enable-site-engagement-eviction-policy"; |
| 443 | 437 |
| 444 // Enables the site settings all sites list and site details pages in the Chrome | 438 // Enables the site settings all sites list and site details pages in the Chrome |
| 445 // settings UI. | 439 // settings UI. |
| 446 const char kEnableSiteSettings[] = "enable-site-settings"; | 440 const char kEnableSiteSettings[] = "enable-site-settings"; |
| 447 | 441 |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 | 1247 |
| 1254 // ----------------------------------------------------------------------------- | 1248 // ----------------------------------------------------------------------------- |
| 1255 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1249 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1256 // | 1250 // |
| 1257 // You were going to just dump your switches here, weren't you? Instead, please | 1251 // You were going to just dump your switches here, weren't you? Instead, please |
| 1258 // put them in alphabetical order above, or in order inside the appropriate | 1252 // put them in alphabetical order above, or in order inside the appropriate |
| 1259 // ifdef at the bottom. The order should match the header. | 1253 // ifdef at the bottom. The order should match the header. |
| 1260 // ----------------------------------------------------------------------------- | 1254 // ----------------------------------------------------------------------------- |
| 1261 | 1255 |
| 1262 } // namespace switches | 1256 } // namespace switches |
| OLD | NEW |