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

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

Issue 853563003: Revert of Remove accelerated hardware decode blacklist entry for Mac OS X. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | gpu/config/software_rendering_list_json.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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 "disable-display-color-calibration", 909 "disable-display-color-calibration",
910 IDS_FLAGS_DISABLE_DISPLAY_COLOR_CALIBRATION_NAME, 910 IDS_FLAGS_DISABLE_DISPLAY_COLOR_CALIBRATION_NAME,
911 IDS_FLAGS_DISABLE_DISPLAY_COLOR_CALIBRATION_DESCRIPTION, 911 IDS_FLAGS_DISABLE_DISPLAY_COLOR_CALIBRATION_DESCRIPTION,
912 kOsCrOS, 912 kOsCrOS,
913 SINGLE_VALUE_TYPE(ui::switches::kDisableDisplayColorCalibration), 913 SINGLE_VALUE_TYPE(ui::switches::kDisableDisplayColorCalibration),
914 }, 914 },
915 #endif // defined(OS_CHROMEOS) 915 #endif // defined(OS_CHROMEOS)
916 { "disable-accelerated-video-decode", 916 { "disable-accelerated-video-decode",
917 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME, 917 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME,
918 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, 918 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION,
919 kOsMac | kOsWin | kOsCrOS, 919 kOsWin | kOsCrOS,
920 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode), 920 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode),
921 }, 921 },
922 #if defined(USE_ASH) 922 #if defined(USE_ASH)
923 { 923 {
924 "ash-debug-shortcuts", 924 "ash-debug-shortcuts",
925 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, 925 IDS_FLAGS_DEBUG_SHORTCUTS_NAME,
926 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 926 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
927 kOsAll, 927 kOsAll,
928 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 928 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
929 }, 929 },
(...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after
2691 } 2691 }
2692 2692
2693 const Experiment* GetExperiments(size_t* count) { 2693 const Experiment* GetExperiments(size_t* count) {
2694 *count = num_experiments; 2694 *count = num_experiments;
2695 return experiments; 2695 return experiments;
2696 } 2696 }
2697 2697
2698 } // namespace testing 2698 } // namespace testing
2699 2699
2700 } // namespace about_flags 2700 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | gpu/config/software_rendering_list_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698