| 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 558 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 559 | 559 |
| 560 // Enable or disable settings in a separate browser window per profile | 560 // Enable or disable settings in a separate browser window per profile |
| 561 // (see SettingsWindowEnabled() below). | 561 // (see SettingsWindowEnabled() below). |
| 562 const char kEnableSettingsWindow[] = "enable-settings-window"; | 562 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 563 const char kDisableSettingsWindow[] = "disable-settings-window"; | 563 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| 564 | 564 |
| 565 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. | 565 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. |
| 566 const char kEnableSpdy4[] = "enable-spdy4"; | 566 const char kEnableSpdy4[] = "enable-spdy4"; |
| 567 | 567 |
| 568 // Enables a feature that holds back some SSLConnectJobs in order to | |
| 569 // minimize the number of full SSL handshakes completed. | |
| 570 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting"; | |
| 571 | |
| 572 // Enables implementation of the Cache-Control: stale-while-revalidate directive | 568 // Enables implementation of the Cache-Control: stale-while-revalidate directive |
| 573 // which permits servers to allow the use of stale resources while revalidation | 569 // which permits servers to allow the use of stale resources while revalidation |
| 574 // proceeds in the background. | 570 // proceeds in the background. |
| 575 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; | 571 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; |
| 576 | 572 |
| 577 // Enables the suggestions service. | 573 // Enables the suggestions service. |
| 578 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 574 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
| 579 | 575 |
| 580 // Enables the supervised user host blacklist. | 576 // Enables the supervised user host blacklist. |
| 581 const char kEnableSupervisedUserBlacklist[] = | 577 const char kEnableSupervisedUserBlacklist[] = |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1402 | 1398 |
| 1403 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
| 1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1405 // | 1401 // |
| 1406 // 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 |
| 1407 // 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 |
| 1408 // ifdef at the bottom. The order should match the header. | 1404 // ifdef at the bottom. The order should match the header. |
| 1409 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
| 1410 | 1406 |
| 1411 } // namespace switches | 1407 } // namespace switches |
| OLD | NEW |