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

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

Issue 182253004: Remove desktop auto-login since we don't plan on shipping it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor classes into one Created 6 years, 9 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 | Annotate | Revision Log
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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 }, 748 },
749 { 749 {
750 // See http://crbug.com/120416 for how to remove this flag. 750 // See http://crbug.com/120416 for how to remove this flag.
751 "save-page-as-mhtml", // FLAGS:RECORD_UMA 751 "save-page-as-mhtml", // FLAGS:RECORD_UMA
752 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, 752 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
753 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, 753 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
754 kOsMac | kOsWin | kOsLinux, 754 kOsMac | kOsWin | kOsLinux,
755 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) 755 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
756 }, 756 },
757 { 757 {
758 "enable-autologin",
759 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
760 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
761 kOsMac | kOsWin | kOsLinux,
762 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
763 },
764 {
765 "enable-quic", 758 "enable-quic",
766 IDS_FLAGS_ENABLE_QUIC_NAME, 759 IDS_FLAGS_ENABLE_QUIC_NAME,
767 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION, 760 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION,
768 kOsAll, 761 kOsAll,
769 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic, 762 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic,
770 switches::kDisableQuic) 763 switches::kDisableQuic)
771 }, 764 },
772 { 765 {
773 "enable-quic-https", 766 "enable-quic-https",
774 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME, 767 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME,
(...skipping 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 } 2420 }
2428 2421
2429 const Experiment* GetExperiments(size_t* count) { 2422 const Experiment* GetExperiments(size_t* count) {
2430 *count = num_experiments; 2423 *count = num_experiments;
2431 return experiments; 2424 return experiments;
2432 } 2425 }
2433 2426
2434 } // namespace testing 2427 } // namespace testing
2435 2428
2436 } // namespace about_flags 2429 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698