| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 | 373 |
| 374 // Only auto-reload error pages when the tab is visible. | 374 // Only auto-reload error pages when the tab is visible. |
| 375 const char kEnableOfflineAutoReloadVisibleOnly[] = | 375 const char kEnableOfflineAutoReloadVisibleOnly[] = |
| 376 "enable-offline-auto-reload-visible-only"; | 376 "enable-offline-auto-reload-visible-only"; |
| 377 | 377 |
| 378 // Enables permission action reporting to Safe Browsing servers for opted in | 378 // Enables permission action reporting to Safe Browsing servers for opted in |
| 379 // users. | 379 // users. |
| 380 const char kEnablePermissionActionReporting[] = | 380 const char kEnablePermissionActionReporting[] = |
| 381 "enable-permission-action-reporting"; | 381 "enable-permission-action-reporting"; |
| 382 | 382 |
| 383 // Enables the picture in picture feature for videos. |
| 384 const char kEnablePictureInPicture[] = "enable-picture-in-picture"; |
| 385 |
| 383 // Enables a number of potentially annoying security features (strict mixed | 386 // Enables a number of potentially annoying security features (strict mixed |
| 384 // content mode, powerful feature restrictions, etc.) | 387 // content mode, powerful feature restrictions, etc.) |
| 385 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = | 388 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = |
| 386 "enable-potentially-annoying-security-features"; | 389 "enable-potentially-annoying-security-features"; |
| 387 | 390 |
| 388 // Enables the Power overlay in Settings. | 391 // Enables the Power overlay in Settings. |
| 389 const char kEnablePowerOverlay[] = "enable-power-overlay"; | 392 const char kEnablePowerOverlay[] = "enable-power-overlay"; |
| 390 | 393 |
| 391 // Enables showing unregistered printers in print preview | 394 // Enables showing unregistered printers in print preview |
| 392 const char kEnablePrintPreviewRegisterPromos[] = | 395 const char kEnablePrintPreviewRegisterPromos[] = |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 | 1193 |
| 1191 // ----------------------------------------------------------------------------- | 1194 // ----------------------------------------------------------------------------- |
| 1192 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1195 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1193 // | 1196 // |
| 1194 // You were going to just dump your switches here, weren't you? Instead, please | 1197 // You were going to just dump your switches here, weren't you? Instead, please |
| 1195 // put them in alphabetical order above, or in order inside the appropriate | 1198 // put them in alphabetical order above, or in order inside the appropriate |
| 1196 // ifdef at the bottom. The order should match the header. | 1199 // ifdef at the bottom. The order should match the header. |
| 1197 // ----------------------------------------------------------------------------- | 1200 // ----------------------------------------------------------------------------- |
| 1198 | 1201 |
| 1199 } // namespace switches | 1202 } // namespace switches |
| OLD | NEW |