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

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

Issue 10810073: [cros] Flip enable-html5-camera 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) 789 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI)
790 }, 790 },
791 { 791 {
792 "enable-drive-v2-api", 792 "enable-drive-v2-api",
793 IDS_FLAGS_ENABLE_DRIVE_V2_API, 793 IDS_FLAGS_ENABLE_DRIVE_V2_API,
794 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, 794 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION,
795 kOsCrOS, 795 kOsCrOS,
796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), 796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api),
797 }, 797 },
798 { 798 {
799 "enable-html5-camera", 799 "disable-html5-camera",
800 IDS_FLAGS_ENABLE_HTML5_CAMERA, 800 IDS_FLAGS_DISABLE_HTML5_CAMERA,
801 IDS_FLAGS_ENABLE_HTML5_CAMERA_DESCRIPTION, 801 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION,
802 kOsCrOS, 802 kOsCrOS,
803 SINGLE_VALUE_TYPE(switches::kEnableHtml5Camera), 803 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera),
804 }, 804 },
805 { 805 {
806 "disable-new-oobe", 806 "disable-new-oobe",
807 IDS_FLAGS_DISABLE_NEW_OOBE, 807 IDS_FLAGS_DISABLE_NEW_OOBE,
808 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, 808 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION,
809 kOsCrOS, 809 kOsCrOS,
810 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), 810 SINGLE_VALUE_TYPE(switches::kDisableNewOobe),
811 }, 811 },
812 #endif 812 #endif
813 { 813 {
(...skipping 477 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

Powered by Google App Engine
This is Rietveld 408576698