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

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: Accidentally compiled w/o use_openssl=true before; fixed compiler errors Created 6 years, 5 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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 const char kEnableSpdy4[] = "enable-spdy4"; 606 const char kEnableSpdy4[] = "enable-spdy4";
607 607
608 // Enables auto correction for misspelled words. 608 // Enables auto correction for misspelled words.
609 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 609 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
610 610
611 // Enables participation in the field trial for user feedback to spelling 611 // Enables participation in the field trial for user feedback to spelling
612 // service. 612 // service.
613 const char kEnableSpellingFeedbackFieldTrial[] = 613 const char kEnableSpellingFeedbackFieldTrial[] =
614 "enable-spelling-feedback-field-trial"; 614 "enable-spelling-feedback-field-trial";
615 615
616 // Enables a feature that holds back some SSLConnectJobs in order to
617 // minimize the number of full SSL handshakes completed.
618 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting";
619
616 // Enables an experimental hosted app experience. 620 // Enables an experimental hosted app experience.
617 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; 621 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps";
618 622
619 // Enables the suggestions service. 623 // Enables the suggestions service.
620 const char kEnableSuggestionsService[] = "enable-suggestions-service"; 624 const char kEnableSuggestionsService[] = "enable-suggestions-service";
621 625
622 // Enables synced notifications. 626 // Enables synced notifications.
623 const char kEnableSyncSyncedNotifications[] = 627 const char kEnableSyncSyncedNotifications[] =
624 "enable-sync-synced-notifications"; 628 "enable-sync-synced-notifications";
625 629
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1391
1388 // ----------------------------------------------------------------------------- 1392 // -----------------------------------------------------------------------------
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1390 // 1394 //
1391 // You were going to just dump your switches here, weren't you? Instead, please 1395 // You were going to just dump your switches here, weren't you? Instead, please
1392 // put them in alphabetical order above, or in order inside the appropriate 1396 // put them in alphabetical order above, or in order inside the appropriate
1393 // ifdef at the bottom. The order should match the header. 1397 // ifdef at the bottom. The order should match the header.
1394 // ----------------------------------------------------------------------------- 1398 // -----------------------------------------------------------------------------
1395 1399
1396 } // namespace switches 1400 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698