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

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

Issue 235863025: Remove desktop auto-login since we don't plan on shipping it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 }, 749 },
750 { 750 {
751 // See http://crbug.com/120416 for how to remove this flag. 751 // See http://crbug.com/120416 for how to remove this flag.
752 "save-page-as-mhtml", // FLAGS:RECORD_UMA 752 "save-page-as-mhtml", // FLAGS:RECORD_UMA
753 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, 753 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
754 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, 754 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
755 kOsMac | kOsWin | kOsLinux, 755 kOsMac | kOsWin | kOsLinux,
756 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) 756 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
757 }, 757 },
758 { 758 {
759 "enable-autologin",
760 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
761 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
762 kOsMac | kOsWin | kOsLinux,
763 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
764 },
765 {
766 "enable-quic", 759 "enable-quic",
767 IDS_FLAGS_ENABLE_QUIC_NAME, 760 IDS_FLAGS_ENABLE_QUIC_NAME,
768 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION, 761 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION,
769 kOsAll, 762 kOsAll,
770 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic, 763 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic,
771 switches::kDisableQuic) 764 switches::kDisableQuic)
772 }, 765 },
773 { 766 {
774 "enable-quic-https", 767 "enable-quic-https",
775 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME, 768 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME,
(...skipping 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after
2315 } 2308 }
2316 2309
2317 const Experiment* GetExperiments(size_t* count) { 2310 const Experiment* GetExperiments(size_t* count) {
2318 *count = num_experiments; 2311 *count = num_experiments;
2319 return experiments; 2312 return experiments;
2320 } 2313 }
2321 2314
2322 } // namespace testing 2315 } // namespace testing
2323 2316
2324 } // namespace about_flags 2317 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698