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

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: Fixed typo & removed CapturingNetLog arg. 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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 const char kEnableSpdy4[] = "enable-spdy4"; 595 const char kEnableSpdy4[] = "enable-spdy4";
596 596
597 // Enables auto correction for misspelled words. 597 // Enables auto correction for misspelled words.
598 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 598 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
599 599
600 // Enables participation in the field trial for user feedback to spelling 600 // Enables participation in the field trial for user feedback to spelling
601 // service. 601 // service.
602 const char kEnableSpellingFeedbackFieldTrial[] = 602 const char kEnableSpellingFeedbackFieldTrial[] =
603 "enable-spelling-feedback-field-trial"; 603 "enable-spelling-feedback-field-trial";
604 604
605 // Enables a feature that holds back some SSLConnectJobs in order to
606 // minimize the number of full SSL handshakes completed.
607 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting";
608
605 // Enables an experimental hosted app experience. 609 // Enables an experimental hosted app experience.
606 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; 610 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps";
607 611
608 // Enables the suggestions service. 612 // Enables the suggestions service.
609 const char kEnableSuggestionsService[] = "enable-suggestions-service"; 613 const char kEnableSuggestionsService[] = "enable-suggestions-service";
610 614
611 // Enables synced notifications. 615 // Enables synced notifications.
612 const char kEnableSyncSyncedNotifications[] = 616 const char kEnableSyncSyncedNotifications[] =
613 "enable-sync-synced-notifications"; 617 "enable-sync-synced-notifications";
614 618
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 1384
1381 // ----------------------------------------------------------------------------- 1385 // -----------------------------------------------------------------------------
1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1383 // 1387 //
1384 // You were going to just dump your switches here, weren't you? Instead, please 1388 // You were going to just dump your switches here, weren't you? Instead, please
1385 // put them in alphabetical order above, or in order inside the appropriate 1389 // put them in alphabetical order above, or in order inside the appropriate
1386 // ifdef at the bottom. The order should match the header. 1390 // ifdef at the bottom. The order should match the header.
1387 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1388 1392
1389 } // namespace switches 1393 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698