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