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

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: rebase 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/chromeos/login/login_utils.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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 }, 847 },
848 #if defined(OS_CHROMEOS) 848 #if defined(OS_CHROMEOS)
849 { 849 {
850 "enable-unsupported-bluetooth-devices", 850 "enable-unsupported-bluetooth-devices",
851 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_NAME, 851 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_NAME,
852 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_DESCRIPTION, 852 IDS_FLAGS_UNSUPPORTED_BLUETOOTH_DEVICES_DESCRIPTION,
853 kOsCrOS, 853 kOsCrOS,
854 SINGLE_VALUE_TYPE(switches::kEnableUnsupportedBluetoothDevices) 854 SINGLE_VALUE_TYPE(switches::kEnableUnsupportedBluetoothDevices)
855 }, 855 },
856 #endif 856 #endif
857 { "enable-accelerated-video-decode", 857 { "disable-accelerated-video-decode",
858 IDS_FLAGS_ENABLE_ACCELERATED_VIDEO_DECODE_NAME, 858 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME,
859 IDS_FLAGS_ENABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, 859 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION,
860 kOsAll, 860 kOsAll,
861 SINGLE_VALUE_TYPE(switches::kEnableAcceleratedVideoDecode), 861 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode),
862 }, 862 },
863 #if defined(USE_ASH) 863 #if defined(USE_ASH)
864 { 864 {
865 "ash-debug-shortcuts", 865 "ash-debug-shortcuts",
866 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, 866 IDS_FLAGS_DEBUG_SHORTCUTS_NAME,
867 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 867 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
868 kOsAll, 868 kOsAll,
869 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 869 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
870 }, 870 },
871 #endif 871 #endif
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 } 1298 }
1299 1299
1300 const Experiment* GetExperiments(size_t* count) { 1300 const Experiment* GetExperiments(size_t* count) {
1301 *count = num_experiments; 1301 *count = num_experiments;
1302 return experiments; 1302 return experiments;
1303 } 1303 }
1304 1304
1305 } // namespace testing 1305 } // namespace testing
1306 1306
1307 } // namespace about_flags 1307 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/login_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698