| 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 2019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2030 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, | 2030 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, |
| 2031 kOsMac, | 2031 kOsMac, |
| 2032 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, | 2032 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, |
| 2033 switches::kDisableMacViewsNativeAppWindows)}, | 2033 switches::kDisableMacViewsNativeAppWindows)}, |
| 2034 {"app-window-cycling", | 2034 {"app-window-cycling", |
| 2035 IDS_FLAGS_APP_WINDOW_CYCLING_NAME, | 2035 IDS_FLAGS_APP_WINDOW_CYCLING_NAME, |
| 2036 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION, | 2036 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION, |
| 2037 kOsMac, | 2037 kOsMac, |
| 2038 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling, | 2038 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling, |
| 2039 switches::kDisableAppWindowCycling)}, | 2039 switches::kDisableAppWindowCycling)}, |
| 2040 {"toolkit-views-dialogs-mac", |
| 2041 IDS_FLAGS_TOOLKIT_VIEWS_DIALOGS_MAC_NAME, |
| 2042 IDS_FLAGS_TOOLKIT_VIEWS_DIALOGS_MAC_DESCRIPTION, |
| 2043 kOsMac, |
| 2044 SINGLE_VALUE_TYPE(switches::kEnableToolkitViewsDialogsMac)}, |
| 2040 #endif | 2045 #endif |
| 2041 #if defined(ENABLE_WEBVR) | 2046 #if defined(ENABLE_WEBVR) |
| 2042 {"enable-webvr", | 2047 {"enable-webvr", |
| 2043 IDS_FLAGS_ENABLE_WEBVR_NAME, | 2048 IDS_FLAGS_ENABLE_WEBVR_NAME, |
| 2044 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION, | 2049 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION, |
| 2045 kOsAll, | 2050 kOsAll, |
| 2046 SINGLE_VALUE_TYPE(switches::kEnableWebVR)}, | 2051 SINGLE_VALUE_TYPE(switches::kEnableWebVR)}, |
| 2047 #endif | 2052 #endif |
| 2048 #if defined(OS_CHROMEOS) | 2053 #if defined(OS_CHROMEOS) |
| 2049 {"disable-accelerated-mjpeg-decode", | 2054 {"disable-accelerated-mjpeg-decode", |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2735 } | 2740 } |
| 2736 | 2741 |
| 2737 const Experiment* GetExperiments(size_t* count) { | 2742 const Experiment* GetExperiments(size_t* count) { |
| 2738 *count = num_experiments; | 2743 *count = num_experiments; |
| 2739 return experiments; | 2744 return experiments; |
| 2740 } | 2745 } |
| 2741 | 2746 |
| 2742 } // namespace testing | 2747 } // namespace testing |
| 2743 | 2748 |
| 2744 } // namespace about_flags | 2749 } // namespace about_flags |
| OLD | NEW |