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

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

Issue 23874015: Implement people search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) 1199 SINGLE_VALUE_TYPE(switches::kDebugPackedApps)
1200 }, 1200 },
1201 { 1201 {
1202 "enable-password-generation", 1202 "enable-password-generation",
1203 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1203 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1204 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1204 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1205 kOsDesktop, 1205 kOsDesktop,
1206 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) 1206 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration)
1207 }, 1207 },
1208 { 1208 {
1209 "enable-people-search",
1210 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME,
1211 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION,
1212 kOsMac | kOsWin | kOsCrOS,
1213 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch)
1214 },
1215 {
1209 "password-autofill-public-suffix-domain-matching", 1216 "password-autofill-public-suffix-domain-matching",
1210 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, 1217 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME,
1211 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, 1218 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION,
1212 kOsAndroid, 1219 kOsAndroid,
1213 ENABLE_DISABLE_VALUE_TYPE( 1220 ENABLE_DISABLE_VALUE_TYPE(
1214 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, 1221 switches::kEnablePasswordAutofillPublicSuffixDomainMatching,
1215 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) 1222 switches::kDisablePasswordAutofillPublicSuffixDomainMatching)
1216 }, 1223 },
1217 { 1224 {
1218 "enable-deferred-image-decoding", 1225 "enable-deferred-image-decoding",
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 } 2121 }
2115 2122
2116 const Experiment* GetExperiments(size_t* count) { 2123 const Experiment* GetExperiments(size_t* count) {
2117 *count = num_experiments; 2124 *count = num_experiments;
2118 return experiments; 2125 return experiments;
2119 } 2126 }
2120 2127
2121 } // namespace testing 2128 } // namespace testing
2122 2129
2123 } // namespace about_flags 2130 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698