| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; | 295 const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; |
| 296 | 296 |
| 297 // 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 |
| 298 // revealing plaintext passwords in the password manager. | 298 // revealing plaintext passwords in the password manager. |
| 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 // Force disabling of metric storage in persistent memory. |
| 306 const char kDisablePersistentMetrics[] = "disable-persistent-metrics"; |
| 307 |
| 305 // Disable pop-up blocking. | 308 // Disable pop-up blocking. |
| 306 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 309 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
| 307 | 310 |
| 308 // Disable speculative TCP/IP preconnection. | 311 // Disable speculative TCP/IP preconnection. |
| 309 const char kDisablePreconnect[] = "disable-preconnect"; | 312 const char kDisablePreconnect[] = "disable-preconnect"; |
| 310 | 313 |
| 311 // Disables print preview (For testing, and for users who don't like us. :[ ) | 314 // Disables print preview (For testing, and for users who don't like us. :[ ) |
| 312 const char kDisablePrintPreview[] = "disable-print-preview"; | 315 const char kDisablePrintPreview[] = "disable-print-preview"; |
| 313 | 316 |
| 314 // Normally when the user attempts to navigate to a page that was the result of | 317 // Normally when the user attempts to navigate to a page that was the result of |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 | 1370 |
| 1368 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
| 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1370 // | 1373 // |
| 1371 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
| 1372 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
| 1373 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
| 1374 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1375 | 1378 |
| 1376 } // namespace switches | 1379 } // namespace switches |
| OLD | NEW |