| 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 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |