| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 // Disables the menu on the NTP for accessing sessions from other devices. | 284 // Disables the menu on the NTP for accessing sessions from other devices. |
| 285 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; | 285 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; |
| 286 | 286 |
| 287 // Disable auto-reload of error pages if offline. | 287 // Disable auto-reload of error pages if offline. |
| 288 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; | 288 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; |
| 289 | 289 |
| 290 // Disable only auto-reloading error pages when the tab is visible. | 290 // Disable only auto-reloading error pages when the tab is visible. |
| 291 const char kDisableOfflineAutoReloadVisibleOnly[] = | 291 const char kDisableOfflineAutoReloadVisibleOnly[] = |
| 292 "disable-offline-auto-reload-visible-only"; | 292 "disable-offline-auto-reload-visible-only"; |
| 293 | 293 |
| 294 // Disable out-of-process V8 proxy resolver. |
| 295 const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; |
| 296 |
| 294 // Disable the setting to prompt the user for their OS account password before | 297 // Disable the setting to prompt the user for their OS account password before |
| 295 // revealing plaintext passwords in the password manager. | 298 // revealing plaintext passwords in the password manager. |
| 296 const char kDisablePasswordManagerReauthentication[] = | 299 const char kDisablePasswordManagerReauthentication[] = |
| 297 "disable-password-manager-reauthentication"; | 300 "disable-password-manager-reauthentication"; |
| 298 | 301 |
| 299 // Disable the new material UI - requires out of process PDF plugin. | 302 // Disable the new material UI - requires out of process PDF plugin. |
| 300 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui"; | 303 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui"; |
| 301 | 304 |
| 302 // Don't use bubbles for content permissions requests instead of infobars. | 305 // Don't use bubbles for content permissions requests instead of infobars. |
| 303 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles"; | 306 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles"; |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 | 1372 |
| 1370 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
| 1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1372 // | 1375 // |
| 1373 // 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 |
| 1374 // 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 |
| 1375 // ifdef at the bottom. The order should match the header. | 1378 // ifdef at the bottom. The order should match the header. |
| 1376 // ----------------------------------------------------------------------------- | 1379 // ----------------------------------------------------------------------------- |
| 1377 | 1380 |
| 1378 } // namespace switches | 1381 } // namespace switches |
| OLD | NEW |