| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 const char kDisablePasswordManagerReauthentication[] = | 302 const char kDisablePasswordManagerReauthentication[] = |
| 303 "disable-password-manager-reauthentication"; | 303 "disable-password-manager-reauthentication"; |
| 304 | 304 |
| 305 // Disable the new material UI - requires out of process PDF plugin. | 305 // Disable the new material UI - requires out of process PDF plugin. |
| 306 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui"; | 306 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui"; |
| 307 | 307 |
| 308 // Disables the Permissions Blacklist, which blocks access to permissions | 308 // Disables the Permissions Blacklist, which blocks access to permissions |
| 309 // for blacklisted sites. | 309 // for blacklisted sites. |
| 310 const char kDisablePermissionsBlacklist[] = "disable-permissions-blacklist"; | 310 const char kDisablePermissionsBlacklist[] = "disable-permissions-blacklist"; |
| 311 | 311 |
| 312 // Force disabling of metric storage in persistent memory. |
| 313 const char kDisablePersistentMetrics[] = "disable-persistent-metrics"; |
| 314 |
| 312 // Disable pop-up blocking. | 315 // Disable pop-up blocking. |
| 313 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 316 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
| 314 | 317 |
| 315 // Disable speculative TCP/IP preconnection. | 318 // Disable speculative TCP/IP preconnection. |
| 316 const char kDisablePreconnect[] = "disable-preconnect"; | 319 const char kDisablePreconnect[] = "disable-preconnect"; |
| 317 | 320 |
| 318 // Disables print preview (For testing, and for users who don't like us. :[ ) | 321 // Disables print preview (For testing, and for users who don't like us. :[ ) |
| 319 const char kDisablePrintPreview[] = "disable-print-preview"; | 322 const char kDisablePrintPreview[] = "disable-print-preview"; |
| 320 | 323 |
| 321 // Normally when the user attempts to navigate to a page that was the result of | 324 // Normally when the user attempts to navigate to a page that was the result of |
| (...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 | 1400 |
| 1398 // ----------------------------------------------------------------------------- | 1401 // ----------------------------------------------------------------------------- |
| 1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1402 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1400 // | 1403 // |
| 1401 // You were going to just dump your switches here, weren't you? Instead, please | 1404 // You were going to just dump your switches here, weren't you? Instead, please |
| 1402 // put them in alphabetical order above, or in order inside the appropriate | 1405 // put them in alphabetical order above, or in order inside the appropriate |
| 1403 // ifdef at the bottom. The order should match the header. | 1406 // ifdef at the bottom. The order should match the header. |
| 1404 // ----------------------------------------------------------------------------- | 1407 // ----------------------------------------------------------------------------- |
| 1405 | 1408 |
| 1406 } // namespace switches | 1409 } // namespace switches |
| OLD | NEW |