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