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

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

Issue 10825297: Merge 150797 - Revert 148201 - Re-enable OTP sign in on trunk by reverting most of 147297. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1229/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service_harness.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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 #if defined(OS_CHROMEOS) 731 #if defined(OS_CHROMEOS)
732 { 732 {
733 "allow-touchpad-three-finger-click", 733 "allow-touchpad-three-finger-click",
734 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, 734 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME,
735 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, 735 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION,
736 kOsCrOS, 736 kOsCrOS,
737 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) 737 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick)
738 }, 738 },
739 #endif 739 #endif
740 { 740 {
741 "disable-client-oauth-signin", 741 "enable-client-oauth-signin",
742 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_NAME, 742 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_NAME,
743 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, 743 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION,
744 kOsMac | kOsWin | kOsLinux, 744 kOsMac | kOsWin | kOsLinux,
745 SINGLE_VALUE_TYPE(switches::kDisableClientOAuthSignin) 745 SINGLE_VALUE_TYPE(switches::kEnableClientOAuthSignin)
746 }, 746 },
747 #if defined(USE_ASH) 747 #if defined(USE_ASH)
748 { 748 {
749 "show-launcher-alignment-menu", 749 "show-launcher-alignment-menu",
750 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, 750 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME,
751 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, 751 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION,
752 kOsAll, 752 kOsAll,
753 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) 753 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu)
754 }, 754 },
755 { 755 {
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 } 1320 }
1321 1321
1322 const Experiment* GetExperiments(size_t* count) { 1322 const Experiment* GetExperiments(size_t* count) {
1323 *count = num_experiments; 1323 *count = num_experiments;
1324 return experiments; 1324 return experiments;
1325 } 1325 }
1326 1326
1327 } // namespace testing 1327 } // namespace testing
1328 1328
1329 } // namespace about_flags 1329 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service_harness.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698