| 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 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 switches::kHighDPISupport,"0") | 1571 switches::kHighDPISupport,"0") |
| 1572 }, | 1572 }, |
| 1573 #if defined(OS_CHROMEOS) | 1573 #if defined(OS_CHROMEOS) |
| 1574 { | 1574 { |
| 1575 "enable-quickoffice-editing", | 1575 "enable-quickoffice-editing", |
| 1576 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_NAME, | 1576 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_NAME, |
| 1577 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_DESCRIPTION, | 1577 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_DESCRIPTION, |
| 1578 kOsCrOS, | 1578 kOsCrOS, |
| 1579 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeEdit), | 1579 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeEdit), |
| 1580 }, | 1580 }, |
| 1581 { |
| 1582 "enable-sticky-keys", |
| 1583 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
| 1584 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
| 1585 kOsCrOS, |
| 1586 SINGLE_VALUE_TYPE(switches::kEnableStickyKeys), |
| 1587 }, |
| 1581 #endif | 1588 #endif |
| 1582 { | 1589 { |
| 1583 "enable-translate-settings", | 1590 "enable-translate-settings", |
| 1584 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_NAME, | 1591 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_NAME, |
| 1585 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_DESCRIPTION, | 1592 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_DESCRIPTION, |
| 1586 kOsAll, | 1593 kOsAll, |
| 1587 SINGLE_VALUE_TYPE(switches::kEnableTranslateSettings) | 1594 SINGLE_VALUE_TYPE(switches::kEnableTranslateSettings) |
| 1588 }, | 1595 }, |
| 1589 { | 1596 { |
| 1590 "enable-web-midi", | 1597 "enable-web-midi", |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2107 } | 2114 } |
| 2108 | 2115 |
| 2109 const Experiment* GetExperiments(size_t* count) { | 2116 const Experiment* GetExperiments(size_t* count) { |
| 2110 *count = num_experiments; | 2117 *count = num_experiments; |
| 2111 return experiments; | 2118 return experiments; |
| 2112 } | 2119 } |
| 2113 | 2120 |
| 2114 } // namespace testing | 2121 } // namespace testing |
| 2115 | 2122 |
| 2116 } // namespace about_flags | 2123 } // namespace about_flags |
| OLD | NEW |