| 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 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1543 #if defined(OS_CHROMEOS) | 1543 #if defined(OS_CHROMEOS) |
| 1544 { | 1544 { |
| 1545 "enable-first-run-ui-transitions", | 1545 "enable-first-run-ui-transitions", |
| 1546 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_NAME, | 1546 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_NAME, |
| 1547 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_DESCRIPTION, | 1547 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_DESCRIPTION, |
| 1548 kOsCrOS, | 1548 kOsCrOS, |
| 1549 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFirstRunUITransitions) | 1549 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFirstRunUITransitions) |
| 1550 }, | 1550 }, |
| 1551 #endif | 1551 #endif |
| 1552 { | 1552 { |
| 1553 "disable-compositor-touch-hit-testing", | |
| 1554 IDS_FLAGS_DISABLE_COMPOSITOR_TOUCH_HIT_TESTING_NAME, | |
| 1555 IDS_FLAGS_DISABLE_COMPOSITOR_TOUCH_HIT_TESTING_DESCRIPTION, | |
| 1556 kOsAll, | |
| 1557 SINGLE_VALUE_TYPE(cc::switches::kDisableCompositorTouchHitTesting), | |
| 1558 }, | |
| 1559 { | |
| 1560 "enable-streamlined-hosted-apps", | 1553 "enable-streamlined-hosted-apps", |
| 1561 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, | 1554 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, |
| 1562 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, | 1555 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, |
| 1563 kOsWin | kOsCrOS | kOsLinux, | 1556 kOsWin | kOsCrOS | kOsLinux, |
| 1564 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) | 1557 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) |
| 1565 }, | 1558 }, |
| 1566 { | 1559 { |
| 1567 "enable-prominent-url-app-flow", | 1560 "enable-prominent-url-app-flow", |
| 1568 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_NAME, | 1561 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_NAME, |
| 1569 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_DESCRIPTION, | 1562 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_DESCRIPTION, |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2460 } | 2453 } |
| 2461 | 2454 |
| 2462 const Experiment* GetExperiments(size_t* count) { | 2455 const Experiment* GetExperiments(size_t* count) { |
| 2463 *count = num_experiments; | 2456 *count = num_experiments; |
| 2464 return experiments; | 2457 return experiments; |
| 2465 } | 2458 } |
| 2466 | 2459 |
| 2467 } // namespace testing | 2460 } // namespace testing |
| 2468 | 2461 |
| 2469 } // namespace about_flags | 2462 } // namespace about_flags |
| OLD | NEW |