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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1560 IDS_FLAGS_ENABLE_HTML_IMPORTS_NAME, | 1560 IDS_FLAGS_ENABLE_HTML_IMPORTS_NAME, |
1561 IDS_FLAGS_ENABLE_HTML_IMPORTS_DESCRIPTION, | 1561 IDS_FLAGS_ENABLE_HTML_IMPORTS_DESCRIPTION, |
1562 kOsAll, | 1562 kOsAll, |
1563 SINGLE_VALUE_TYPE(switches::kEnableHTMLImports) | 1563 SINGLE_VALUE_TYPE(switches::kEnableHTMLImports) |
1564 }, | 1564 }, |
1565 { | 1565 { |
1566 "high-dpi-support", | 1566 "high-dpi-support", |
1567 IDS_FLAGS_HIDPI_NAME, | 1567 IDS_FLAGS_HIDPI_NAME, |
1568 IDS_FLAGS_HIDPI_DESCRIPTION, | 1568 IDS_FLAGS_HIDPI_DESCRIPTION, |
1569 kOsWin, | 1569 kOsWin, |
1570 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(gfx::switches::kHighDPISupport, "1", | 1570 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kHighDPISupport, "1", |
1571 gfx::switches::kHighDPISupport, "0") | 1571 switches::kHighDPISupport, "0") |
1572 }, | 1572 }, |
1573 #if defined(OS_CHROMEOS) | 1573 #if defined(OS_CHROMEOS) |
1574 { | 1574 { |
1575 "enable-quickoffice-viewing", | 1575 "enable-quickoffice-viewing", |
1576 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_NAME, | 1576 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_NAME, |
1577 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_DESCRIPTION, | 1577 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_DESCRIPTION, |
1578 kOsCrOS, | 1578 kOsCrOS, |
1579 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1579 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
1580 }, | 1580 }, |
1581 { | 1581 { |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2150 } | 2150 } |
2151 | 2151 |
2152 const Experiment* GetExperiments(size_t* count) { | 2152 const Experiment* GetExperiments(size_t* count) { |
2153 *count = num_experiments; | 2153 *count = num_experiments; |
2154 return experiments; | 2154 return experiments; |
2155 } | 2155 } |
2156 | 2156 |
2157 } // namespace testing | 2157 } // namespace testing |
2158 | 2158 |
2159 } // namespace about_flags | 2159 } // namespace about_flags |
OLD | NEW |