| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 | 533 |
| 534 // Enables save password prompt bubble. | 534 // Enables save password prompt bubble. |
| 535 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 535 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
| 536 | 536 |
| 537 // Enables SDCH for https schemes. | 537 // Enables SDCH for https schemes. |
| 538 const char kEnableSdchOverHttps[] = "enable-sdch-over-https"; | 538 const char kEnableSdchOverHttps[] = "enable-sdch-over-https"; |
| 539 | 539 |
| 540 // Enables using bubbles for session restore request instead of infobars. | 540 // Enables using bubbles for session restore request instead of infobars. |
| 541 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 541 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 542 | 542 |
| 543 // Enables the deprecated window.showModalDialog API. This is slated for | |
| 544 // removal. | |
| 545 const char kEnableShowModalDialog[] = "enable-show-modal-dialog"; | |
| 546 | |
| 547 // Enable or disable settings in a separate browser window per profile | 543 // Enable or disable settings in a separate browser window per profile |
| 548 // (see SettingsWindowEnabled() below). | 544 // (see SettingsWindowEnabled() below). |
| 549 const char kEnableSettingsWindow[] = "enable-settings-window"; | 545 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 550 const char kDisableSettingsWindow[] = "disable-settings-window"; | 546 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| 551 | 547 |
| 552 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. | 548 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. |
| 553 const char kEnableSpdy4[] = "enable-spdy4"; | 549 const char kEnableSpdy4[] = "enable-spdy4"; |
| 554 | 550 |
| 555 // Enables a feature that holds back some SSLConnectJobs in order to | 551 // Enables a feature that holds back some SSLConnectJobs in order to |
| 556 // minimize the number of full SSL handshakes completed. | 552 // minimize the number of full SSL handshakes completed. |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 | 1370 |
| 1375 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
| 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1377 // | 1373 // |
| 1378 // 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 |
| 1379 // 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 |
| 1380 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
| 1381 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1382 | 1378 |
| 1383 } // namespace switches | 1379 } // namespace switches |
| OLD | NEW |