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

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

Issue 795873004: Enable webview-based sign-in to chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put back old value and label in histograms Created 5 years, 11 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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 switches::kDisableNewAvatarMenu) 1406 switches::kDisableNewAvatarMenu)
1407 }, 1407 },
1408 { 1408 {
1409 "enable-web-based-signin", 1409 "enable-web-based-signin",
1410 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, 1410 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME,
1411 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, 1411 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION,
1412 kOsMac | kOsWin | kOsLinux, 1412 kOsMac | kOsWin | kOsLinux,
1413 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) 1413 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin)
1414 }, 1414 },
1415 { 1415 {
1416 "enable-webview-based-signin", 1416 "enable-iframe-based-signin",
1417 IDS_FLAGS_ENABLE_WEBVIEW_BASED_SIGNIN_NAME, 1417 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME,
1418 IDS_FLAGS_ENABLE_WEBVIEW_BASED_SIGNIN_DESCRIPTION, 1418 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION,
1419 kOsMac | kOsWin | kOsLinux, 1419 kOsMac | kOsWin | kOsLinux,
1420 SINGLE_VALUE_TYPE(switches::kEnableWebviewBasedSignin) 1420 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)
1421 }, 1421 },
1422 { 1422 {
1423 "enable-google-profile-info", 1423 "enable-google-profile-info",
1424 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, 1424 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME,
1425 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, 1425 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION,
1426 kOsMac | kOsWin | kOsLinux, 1426 kOsMac | kOsWin | kOsLinux,
1427 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) 1427 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)
1428 }, 1428 },
1429 { 1429 {
1430 "reset-app-list-install-state", 1430 "reset-app-list-install-state",
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2677 } 2677 }
2678 2678
2679 const Experiment* GetExperiments(size_t* count) { 2679 const Experiment* GetExperiments(size_t* count) {
2680 *count = num_experiments; 2680 *count = num_experiments;
2681 return experiments; 2681 return experiments;
2682 } 2682 }
2683 2683
2684 } // namespace testing 2684 } // namespace testing
2685 2685
2686 } // namespace about_flags 2686 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | components/signin/core/common/profile_management_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698