| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 // Disable auto-reload of error pages if offline. | 288 // Disable auto-reload of error pages if offline. |
| 289 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; | 289 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; |
| 290 | 290 |
| 291 // Disable only auto-reloading error pages when the tab is visible. | 291 // Disable only auto-reloading error pages when the tab is visible. |
| 292 const char kDisableOfflineAutoReloadVisibleOnly[] = | 292 const char kDisableOfflineAutoReloadVisibleOnly[] = |
| 293 "disable-offline-auto-reload-visible-only"; | 293 "disable-offline-auto-reload-visible-only"; |
| 294 | 294 |
| 295 // Disable out-of-process V8 proxy resolver. | 295 // Disable out-of-process V8 proxy resolver. |
| 296 const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; | 296 const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; |
| 297 | 297 |
| 298 // Disable the setting to prompt the user for their OS account password before | |
| 299 // revealing plaintext passwords in the password manager. | |
| 300 const char kDisablePasswordManagerReauthentication[] = | |
| 301 "disable-password-manager-reauthentication"; | |
| 302 | |
| 303 // Disables the Permissions Blacklist, which blocks access to permissions | 298 // Disables the Permissions Blacklist, which blocks access to permissions |
| 304 // for blacklisted sites. | 299 // for blacklisted sites. |
| 305 const char kDisablePermissionsBlacklist[] = "disable-permissions-blacklist"; | 300 const char kDisablePermissionsBlacklist[] = "disable-permissions-blacklist"; |
| 306 | 301 |
| 307 // Disable pop-up blocking. | 302 // Disable pop-up blocking. |
| 308 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 303 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
| 309 | 304 |
| 310 // Disable speculative TCP/IP preconnection. | 305 // Disable speculative TCP/IP preconnection. |
| 311 const char kDisablePreconnect[] = "disable-preconnect"; | 306 const char kDisablePreconnect[] = "disable-preconnect"; |
| 312 | 307 |
| (...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1372 |
| 1378 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
| 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1380 // | 1375 // |
| 1381 // You were going to just dump your switches here, weren't you? Instead, please | 1376 // You were going to just dump your switches here, weren't you? Instead, please |
| 1382 // put them in alphabetical order above, or in order inside the appropriate | 1377 // put them in alphabetical order above, or in order inside the appropriate |
| 1383 // ifdef at the bottom. The order should match the header. | 1378 // ifdef at the bottom. The order should match the header. |
| 1384 // ----------------------------------------------------------------------------- | 1379 // ----------------------------------------------------------------------------- |
| 1385 | 1380 |
| 1386 } // namespace switches | 1381 } // namespace switches |
| OLD | NEW |