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 2416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2427 SINGLE_VALUE_TYPE(autofill::switches::kEnableAccessorySuggestionView) | 2427 SINGLE_VALUE_TYPE(autofill::switches::kEnableAccessorySuggestionView) |
2428 }, | 2428 }, |
2429 #endif // defined(OS_ANDROID) | 2429 #endif // defined(OS_ANDROID) |
2430 { | 2430 { |
2431 "disable-new-video-renderer", | 2431 "disable-new-video-renderer", |
2432 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_NAME, | 2432 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_NAME, |
2433 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_DESCRIPTION, | 2433 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_DESCRIPTION, |
2434 kOsAll, | 2434 kOsAll, |
2435 SINGLE_VALUE_TYPE(switches::kDisableNewVideoRenderer) | 2435 SINGLE_VALUE_TYPE(switches::kDisableNewVideoRenderer) |
2436 }, | 2436 }, |
| 2437 #if defined(OS_CHROMEOS) |
| 2438 { |
| 2439 "enable-printer-app-search", |
| 2440 IDS_FLAGS_PRINTER_PROVIDER_SEARCH_APP_NAME, |
| 2441 IDS_FLAGS_PRINTER_PROVIDER_SEARCH_APP_DESCRIPTION, |
| 2442 kOsCrOS, |
| 2443 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePrinterAppSearch) |
| 2444 }, |
| 2445 #endif // OS_CHROMEOS |
2437 // Temporary flag to ease the transition to standard-compliant scrollTop | 2446 // Temporary flag to ease the transition to standard-compliant scrollTop |
2438 // behavior. Will be removed shortly after http://crbug.com/157855 ships. | 2447 // behavior. Will be removed shortly after http://crbug.com/157855 ships. |
2439 { | 2448 { |
2440 "scroll-top-left-interop", | 2449 "scroll-top-left-interop", |
2441 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_NAME, | 2450 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_NAME, |
2442 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_DESCRIPTION, | 2451 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_DESCRIPTION, |
2443 kOsAll, | 2452 kOsAll, |
2444 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( | 2453 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( |
2445 switches::kEnableBlinkFeatures, "ScrollTopLeftInterop", | 2454 switches::kEnableBlinkFeatures, "ScrollTopLeftInterop", |
2446 switches::kDisableBlinkFeatures, "ScrollTopLeftInterop") | 2455 switches::kDisableBlinkFeatures, "ScrollTopLeftInterop") |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3026 } | 3035 } |
3027 | 3036 |
3028 const Experiment* GetExperiments(size_t* count) { | 3037 const Experiment* GetExperiments(size_t* count) { |
3029 *count = num_experiments; | 3038 *count = num_experiments; |
3030 return experiments; | 3039 return experiments; |
3031 } | 3040 } |
3032 | 3041 |
3033 } // namespace testing | 3042 } // namespace testing |
3034 | 3043 |
3035 } // namespace about_flags | 3044 } // namespace about_flags |
OLD | NEW |