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

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: Remove redundant comment. 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/android/chrome_startup_flags.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 }, 756 },
757 { 757 {
758 // See http://crbug.com/120416 for how to remove this flag. 758 // See http://crbug.com/120416 for how to remove this flag.
759 "save-page-as-mhtml", // FLAGS:RECORD_UMA 759 "save-page-as-mhtml", // FLAGS:RECORD_UMA
760 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, 760 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
761 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, 761 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
762 kOsMac | kOsWin | kOsLinux, 762 kOsMac | kOsWin | kOsLinux,
763 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) 763 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
764 }, 764 },
765 { 765 {
766 "enable-autologin",
767 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
768 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
769 kOsMac | kOsWin | kOsLinux,
770 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
771 },
772 {
773 "enable-quic", 766 "enable-quic",
774 IDS_FLAGS_ENABLE_QUIC_NAME, 767 IDS_FLAGS_ENABLE_QUIC_NAME,
775 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION, 768 IDS_FLAGS_ENABLE_QUIC_DESCRIPTION,
776 kOsAll, 769 kOsAll,
777 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic, 770 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic,
778 switches::kDisableQuic) 771 switches::kDisableQuic)
779 }, 772 },
780 { 773 {
781 "enable-quic-https", 774 "enable-quic-https",
782 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME, 775 IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME,
(...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after
2320 } 2313 }
2321 2314
2322 const Experiment* GetExperiments(size_t* count) { 2315 const Experiment* GetExperiments(size_t* count) {
2323 *count = num_experiments; 2316 *count = num_experiments;
2324 return experiments; 2317 return experiments;
2325 } 2318 }
2326 2319
2327 } // namespace testing 2320 } // namespace testing
2328 2321
2329 } // namespace about_flags 2322 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/android/chrome_startup_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698