Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1222)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 23769011: Move a bunch of windows stuff from ui/base/win to ui/gfx/win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar bustage. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698