| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |