| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 544 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 545 | 545 |
| 546 // Enable or disable settings in a separate browser window per profile | 546 // Enable or disable settings in a separate browser window per profile |
| 547 // (see SettingsWindowEnabled() below). | 547 // (see SettingsWindowEnabled() below). |
| 548 const char kEnableSettingsWindow[] = "enable-settings-window"; | 548 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 549 const char kDisableSettingsWindow[] = "disable-settings-window"; | 549 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| 550 | 550 |
| 551 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. | 551 // Enable SPDY/4, aka HTTP/2. This is a temporary testing flag. |
| 552 const char kEnableSpdy4[] = "enable-spdy4"; | 552 const char kEnableSpdy4[] = "enable-spdy4"; |
| 553 | 553 |
| 554 // Enables a feature that holds back some SSLConnectJobs in order to | |
| 555 // minimize the number of full SSL handshakes completed. | |
| 556 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting"; | |
| 557 | |
| 558 // Enables implementation of the Cache-Control: stale-while-revalidate directive | 554 // Enables implementation of the Cache-Control: stale-while-revalidate directive |
| 559 // which permits servers to allow the use of stale resources while revalidation | 555 // which permits servers to allow the use of stale resources while revalidation |
| 560 // proceeds in the background. | 556 // proceeds in the background. |
| 561 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; | 557 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; |
| 562 | 558 |
| 563 // Enables the suggestions service. | 559 // Enables the suggestions service. |
| 564 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 560 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
| 565 | 561 |
| 566 // Enables the supervised user host blacklist. | 562 // Enables the supervised user host blacklist. |
| 567 const char kEnableSupervisedUserBlacklist[] = | 563 const char kEnableSupervisedUserBlacklist[] = |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1373 |
| 1378 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
| 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1380 // | 1376 // |
| 1381 // You were going to just dump your switches here, weren't you? Instead, please | 1377 // You were going to just dump your switches here, weren't you? Instead, please |
| 1382 // put them in alphabetical order above, or in order inside the appropriate | 1378 // put them in alphabetical order above, or in order inside the appropriate |
| 1383 // ifdef at the bottom. The order should match the header. | 1379 // ifdef at the bottom. The order should match the header. |
| 1384 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
| 1385 | 1381 |
| 1386 } // namespace switches | 1382 } // namespace switches |
| OLD | NEW |