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

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

Issue 10834251: Revert 148201 - Re-enable OTP sign in on trunk by reverting most of 147297. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 #if defined(OS_CHROMEOS) 745 #if defined(OS_CHROMEOS)
746 { 746 {
747 "allow-touchpad-three-finger-click", 747 "allow-touchpad-three-finger-click",
748 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, 748 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME,
749 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, 749 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION,
750 kOsCrOS, 750 kOsCrOS,
751 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) 751 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick)
752 }, 752 },
753 #endif 753 #endif
754 { 754 {
755 "disable-client-oauth-signin", 755 "enable-client-oauth-signin",
756 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_NAME, 756 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_NAME,
757 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, 757 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION,
758 kOsMac | kOsWin | kOsLinux, 758 kOsMac | kOsWin | kOsLinux,
759 SINGLE_VALUE_TYPE(switches::kDisableClientOAuthSignin) 759 SINGLE_VALUE_TYPE(switches::kEnableClientOAuthSignin)
760 }, 760 },
761 #if defined(USE_ASH) 761 #if defined(USE_ASH)
762 { 762 {
763 "show-launcher-alignment-menu", 763 "show-launcher-alignment-menu",
764 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, 764 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME,
765 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, 765 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION,
766 kOsAll, 766 kOsAll,
767 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) 767 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu)
768 }, 768 },
769 { 769 {
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 } 1334 }
1335 1335
1336 const Experiment* GetExperiments(size_t* count) { 1336 const Experiment* GetExperiments(size_t* count) {
1337 *count = num_experiments; 1337 *count = num_experiments;
1338 return experiments; 1338 return experiments;
1339 } 1339 }
1340 1340
1341 } // namespace testing 1341 } // namespace testing
1342 1342
1343 } // namespace about_flags 1343 } // 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