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

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

Issue 10805070: Flip HW video decode from being behind an "enable" flag to being behind a "disable" flag (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 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 }, 833 },
834 #if defined(OS_CHROMEOS) 834 #if defined(OS_CHROMEOS)
835 { 835 {
836 "enable-unsupported-bluetooth-devices", 836 "enable-unsupported-bluetooth-devices",
837 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_NAME, 837 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_NAME,
838 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_DESCRIPTION, 838 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_DESCRIPTION,
839 kOsCrOS, 839 kOsCrOS,
840 SINGLE_VALUE_TYPE(switches::kEnableUnsupportedBluetoothDevices) 840 SINGLE_VALUE_TYPE(switches::kEnableUnsupportedBluetoothDevices)
841 }, 841 },
842 #endif 842 #endif
843 { "enable-accelerated-video-decode", 843 { "disable-accelerated-video-decode",
844 IDS_FLAGS_ENABLE_ACCELERATED_VIDEO_DECODE_NAME, 844 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME,
845 IDS_FLAGS_ENABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, 845 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION,
846 kOsAll, 846 kOsAll,
847 SINGLE_VALUE_TYPE(switches::kEnableAcceleratedVideoDecode), 847 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode),
848 }, 848 },
849 #if defined(USE_ASH) 849 #if defined(USE_ASH)
850 { 850 {
851 "ash-debug-shortcuts", 851 "ash-debug-shortcuts",
852 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, 852 IDS_FLAGS_DEBUG_SHORTCUTS_NAME,
853 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 853 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
854 kOsAll, 854 kOsAll,
855 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 855 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
856 }, 856 },
857 #endif 857 #endif
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 } 1283 }
1284 1284
1285 const Experiment* GetExperiments(size_t* count) { 1285 const Experiment* GetExperiments(size_t* count) {
1286 *count = num_experiments; 1286 *count = num_experiments;
1287 return experiments; 1287 return experiments;
1288 } 1288 }
1289 1289
1290 } // namespace testing 1290 } // namespace testing
1291 1291
1292 } // namespace about_flags 1292 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698