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

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

Issue 10808061: [cros] Flip enable-new-oobe switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), 796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api),
797 }, 797 },
798 { 798 {
799 "enable-html5-camera", 799 "enable-html5-camera",
800 IDS_FLAGS_ENABLE_HTML5_CAMERA, 800 IDS_FLAGS_ENABLE_HTML5_CAMERA,
801 IDS_FLAGS_ENABLE_HTML5_CAMERA_DESCRIPTION, 801 IDS_FLAGS_ENABLE_HTML5_CAMERA_DESCRIPTION,
802 kOsCrOS, 802 kOsCrOS,
803 SINGLE_VALUE_TYPE(switches::kEnableHtml5Camera), 803 SINGLE_VALUE_TYPE(switches::kEnableHtml5Camera),
804 }, 804 },
805 { 805 {
806 "enable-new-oobe", 806 "disable-new-oobe",
807 IDS_FLAGS_ENABLE_NEW_OOBE, 807 IDS_FLAGS_DISABLE_NEW_OOBE,
808 IDS_FLAGS_ENABLE_NEW_OOBE_DESCRIPTION, 808 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION,
809 kOsCrOS, 809 kOsCrOS,
810 SINGLE_VALUE_TYPE(switches::kEnableNewOobe), 810 SINGLE_VALUE_TYPE(switches::kDisableNewOobe),
811 }, 811 },
812 #endif 812 #endif
813 { 813 {
814 "enable-views-textfield", 814 "enable-views-textfield",
815 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, 815 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME,
816 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, 816 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION,
817 kOsWin, 817 kOsWin,
818 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), 818 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield),
819 }, 819 },
820 { 820 {
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 } 1291 }
1292 1292
1293 const Experiment* GetExperiments(size_t* count) { 1293 const Experiment* GetExperiments(size_t* count) {
1294 *count = num_experiments; 1294 *count = num_experiments;
1295 return experiments; 1295 return experiments;
1296 } 1296 }
1297 1297
1298 } // namespace testing 1298 } // namespace testing
1299 1299
1300 } // namespace about_flags 1300 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698