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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 1139013002: Completely remove SSLv3 support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 { IDS_ALLOW_AUTOFILL_SYNC_CREDENTIAL, 413 { IDS_ALLOW_AUTOFILL_SYNC_CREDENTIAL,
414 password_manager::switches::kAllowAutofillSyncCredential, ""}, 414 password_manager::switches::kAllowAutofillSyncCredential, ""},
415 { IDS_DISALLOW_AUTOFILL_SYNC_CREDENTIAL_FOR_REAUTH, 415 { IDS_DISALLOW_AUTOFILL_SYNC_CREDENTIAL_FOR_REAUTH,
416 password_manager::switches::kDisallowAutofillSyncCredentialForReauth, ""}, 416 password_manager::switches::kDisallowAutofillSyncCredentialForReauth, ""},
417 { IDS_DISALLOW_AUTOFILL_SYNC_CREDENTIAL, 417 { IDS_DISALLOW_AUTOFILL_SYNC_CREDENTIAL,
418 password_manager::switches::kDisallowAutofillSyncCredential, ""}, 418 password_manager::switches::kDisallowAutofillSyncCredential, ""},
419 }; 419 };
420 420
421 const Experiment::Choice kSSLVersionMinChoices[] = { 421 const Experiment::Choice kSSLVersionMinChoices[] = {
422 { IDS_FLAGS_SSL_VERSION_DEFAULT, "", "" }, 422 { IDS_FLAGS_SSL_VERSION_DEFAULT, "", "" },
423 { IDS_FLAGS_SSL_VERSION_SSLV3, switches::kSSLVersionMin,
424 switches::kSSLVersionSSLv3 },
425 { IDS_FLAGS_SSL_VERSION_TLSV1, switches::kSSLVersionMin, 423 { IDS_FLAGS_SSL_VERSION_TLSV1, switches::kSSLVersionMin,
426 switches::kSSLVersionTLSv1 }, 424 switches::kSSLVersionTLSv1 },
427 { IDS_FLAGS_SSL_VERSION_TLSV11, switches::kSSLVersionMin, 425 { IDS_FLAGS_SSL_VERSION_TLSV11, switches::kSSLVersionMin,
428 switches::kSSLVersionTLSv11 }, 426 switches::kSSLVersionTLSv11 },
429 { IDS_FLAGS_SSL_VERSION_TLSV12, switches::kSSLVersionMin, 427 { IDS_FLAGS_SSL_VERSION_TLSV12, switches::kSSLVersionMin,
430 switches::kSSLVersionTLSv12 }, 428 switches::kSSLVersionTLSv12 },
431 }; 429 };
432 430
433 const Experiment::Choice kFillOnAccountSelectChoices[] = { 431 const Experiment::Choice kFillOnAccountSelectChoices[] = {
434 { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, 432 { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
(...skipping 2591 matching lines...) Expand 10 before | Expand all | Expand 10 after
3026 } 3024 }
3027 3025
3028 const Experiment* GetExperiments(size_t* count) { 3026 const Experiment* GetExperiments(size_t* count) {
3029 *count = num_experiments; 3027 *count = num_experiments;
3030 return experiments; 3028 return experiments;
3031 } 3029 }
3032 3030
3033 } // namespace testing 3031 } // namespace testing
3034 3032
3035 } // namespace about_flags 3033 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698