| 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 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2034 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, | 2034 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, |
| 2035 kOsMac, | 2035 kOsMac, |
| 2036 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, | 2036 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, |
| 2037 switches::kDisableMacViewsNativeAppWindows)}, | 2037 switches::kDisableMacViewsNativeAppWindows)}, |
| 2038 {"app-window-cycling", | 2038 {"app-window-cycling", |
| 2039 IDS_FLAGS_APP_WINDOW_CYCLING_NAME, | 2039 IDS_FLAGS_APP_WINDOW_CYCLING_NAME, |
| 2040 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION, | 2040 IDS_FLAGS_APP_WINDOW_CYCLING_DESCRIPTION, |
| 2041 kOsMac, | 2041 kOsMac, |
| 2042 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling, | 2042 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppWindowCycling, |
| 2043 switches::kDisableAppWindowCycling)}, | 2043 switches::kDisableAppWindowCycling)}, |
| 2044 {"mac-views-dialogs", |
| 2045 IDS_FLAGS_MAC_VIEWS_DIALOGS_NAME, |
| 2046 IDS_FLAGS_MAC_VIEWS_DIALOGS_DESCRIPTION, |
| 2047 kOsMac, |
| 2048 SINGLE_VALUE_TYPE(switches::kEnableMacViewsDialogs)}, |
| 2044 #endif | 2049 #endif |
| 2045 #if defined(ENABLE_WEBVR) | 2050 #if defined(ENABLE_WEBVR) |
| 2046 {"enable-webvr", | 2051 {"enable-webvr", |
| 2047 IDS_FLAGS_ENABLE_WEBVR_NAME, | 2052 IDS_FLAGS_ENABLE_WEBVR_NAME, |
| 2048 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION, | 2053 IDS_FLAGS_ENABLE_WEBVR_DESCRIPTION, |
| 2049 kOsAll, | 2054 kOsAll, |
| 2050 SINGLE_VALUE_TYPE(switches::kEnableWebVR)}, | 2055 SINGLE_VALUE_TYPE(switches::kEnableWebVR)}, |
| 2051 #endif | 2056 #endif |
| 2052 #if defined(OS_CHROMEOS) | 2057 #if defined(OS_CHROMEOS) |
| 2053 {"disable-accelerated-mjpeg-decode", | 2058 {"disable-accelerated-mjpeg-decode", |
| (...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2763 } | 2768 } |
| 2764 | 2769 |
| 2765 const Experiment* GetExperiments(size_t* count) { | 2770 const Experiment* GetExperiments(size_t* count) { |
| 2766 *count = num_experiments; | 2771 *count = num_experiments; |
| 2767 return experiments; | 2772 return experiments; |
| 2768 } | 2773 } |
| 2769 | 2774 |
| 2770 } // namespace testing | 2775 } // namespace testing |
| 2771 | 2776 |
| 2772 } // namespace about_flags | 2777 } // namespace about_flags |
| OLD | NEW |