Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 353713005: Implements new, more robust design for communicating between SSLConnectJobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved tests back to ssl_client_socket_unittest.cc, fixed various other issues. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 const char kEnableSpdy4[] = "enable-spdy4"; 592 const char kEnableSpdy4[] = "enable-spdy4";
593 593
594 // Enables auto correction for misspelled words. 594 // Enables auto correction for misspelled words.
595 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 595 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
596 596
597 // Enables participation in the field trial for user feedback to spelling 597 // Enables participation in the field trial for user feedback to spelling
598 // service. 598 // service.
599 const char kEnableSpellingFeedbackFieldTrial[] = 599 const char kEnableSpellingFeedbackFieldTrial[] =
600 "enable-spelling-feedback-field-trial"; 600 "enable-spelling-feedback-field-trial";
601 601
602 // Enables a feature that holds back some SSLConnectJobs in order to
603 // minimize the number of full SSL handshakes completed.
604 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting";
605
602 // Enables an experimental hosted app experience. 606 // Enables an experimental hosted app experience.
603 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; 607 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps";
604 608
605 // Enables the suggestions service. 609 // Enables the suggestions service.
606 const char kEnableSuggestionsService[] = "enable-suggestions-service"; 610 const char kEnableSuggestionsService[] = "enable-suggestions-service";
607 611
608 // Enables synced notifications. 612 // Enables synced notifications.
609 const char kEnableSyncSyncedNotifications[] = 613 const char kEnableSyncSyncedNotifications[] =
610 "enable-sync-synced-notifications"; 614 "enable-sync-synced-notifications";
611 615
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1373 1377
1374 // ----------------------------------------------------------------------------- 1378 // -----------------------------------------------------------------------------
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1376 // 1380 //
1377 // You were going to just dump your switches here, weren't you? Instead, please 1381 // You were going to just dump your switches here, weren't you? Instead, please
1378 // put them in alphabetical order above, or in order inside the appropriate 1382 // put them in alphabetical order above, or in order inside the appropriate
1379 // ifdef at the bottom. The order should match the header. 1383 // ifdef at the bottom. The order should match the header.
1380 // ----------------------------------------------------------------------------- 1384 // -----------------------------------------------------------------------------
1381 1385
1382 } // namespace switches 1386 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698