| 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 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1523 }, | 1523 }, |
| 1524 { | 1524 { |
| 1525 "enable-zero-copy", | 1525 "enable-zero-copy", |
| 1526 IDS_FLAGS_ZERO_COPY_NAME, | 1526 IDS_FLAGS_ZERO_COPY_NAME, |
| 1527 IDS_FLAGS_ZERO_COPY_DESCRIPTION, | 1527 IDS_FLAGS_ZERO_COPY_DESCRIPTION, |
| 1528 kOsAll, | 1528 kOsAll, |
| 1529 MULTI_VALUE_TYPE(kZeroCopyChoices) | 1529 MULTI_VALUE_TYPE(kZeroCopyChoices) |
| 1530 }, | 1530 }, |
| 1531 #if defined(OS_CHROMEOS) | 1531 #if defined(OS_CHROMEOS) |
| 1532 { | 1532 { |
| 1533 "disable-first-run-ui", | |
| 1534 IDS_FLAGS_DISABLE_FIRST_RUN_UI_NAME, | |
| 1535 IDS_FLAGS_DISABLE_FIRST_RUN_UI_DESCRIPTION, | |
| 1536 kOsCrOS, | |
| 1537 SINGLE_VALUE_TYPE(chromeos::switches::kDisableFirstRunUI) | |
| 1538 }, | |
| 1539 { | |
| 1540 "enable-first-run-ui-transitions", | 1533 "enable-first-run-ui-transitions", |
| 1541 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_NAME, | 1534 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_NAME, |
| 1542 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_DESCRIPTION, | 1535 IDS_FLAGS_ENABLE_FIRST_RUN_UI_TRANSITIONS_DESCRIPTION, |
| 1543 kOsCrOS, | 1536 kOsCrOS, |
| 1544 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFirstRunUITransitions) | 1537 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFirstRunUITransitions) |
| 1545 }, | 1538 }, |
| 1546 #endif | 1539 #endif |
| 1547 { | 1540 { |
| 1548 "disable-compositor-touch-hit-testing", | 1541 "disable-compositor-touch-hit-testing", |
| 1549 IDS_FLAGS_DISABLE_COMPOSITOR_TOUCH_HIT_TESTING_NAME, | 1542 IDS_FLAGS_DISABLE_COMPOSITOR_TOUCH_HIT_TESTING_NAME, |
| (...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2401 } | 2394 } |
| 2402 | 2395 |
| 2403 const Experiment* GetExperiments(size_t* count) { | 2396 const Experiment* GetExperiments(size_t* count) { |
| 2404 *count = num_experiments; | 2397 *count = num_experiments; |
| 2405 return experiments; | 2398 return experiments; |
| 2406 } | 2399 } |
| 2407 | 2400 |
| 2408 } // namespace testing | 2401 } // namespace testing |
| 2409 | 2402 |
| 2410 } // namespace about_flags | 2403 } // namespace about_flags |
| OLD | NEW |