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

Side by Side Diff: webkit/glue/webkit_glue_win.cc

Issue 58008: Replace webkit/glue/screen_info.h with WebKit/chromium/public/WebScreenInfo.h... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
OLDNEW
(Empty)
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file.
4
5 #include "webkit/glue/webkit_glue.h"
6
7 #include "webkit/glue/screen_info.h"
8
9 namespace webkit_glue {
10
11 ScreenInfo GetScreenInfoHelper(gfx::NativeView window) {
12 HMONITOR monitor = MonitorFromWindow(window, MONITOR_DEFAULTTOPRIMARY);
13
14 MONITORINFOEX monitor_info;
15 monitor_info.cbSize = sizeof(MONITORINFOEX);
16 GetMonitorInfo(monitor, &monitor_info);
17
18 DEVMODE dev_mode;
19 dev_mode.dmSize = sizeof(dev_mode);
20 dev_mode.dmDriverExtra = 0;
21 EnumDisplaySettings(monitor_info.szDevice, ENUM_CURRENT_SETTINGS, &dev_mode);
22
23 ScreenInfo results;
24 results.depth = dev_mode.dmBitsPerPel;
25 results.depth_per_component = dev_mode.dmBitsPerPel / 3; // Assumes RGB
26 results.is_monochrome = dev_mode.dmColor == DMCOLOR_MONOCHROME;
27 results.rect = gfx::Rect(monitor_info.rcMonitor);
28 results.available_rect = gfx::Rect(monitor_info.rcWork);
29 return results;
30 }
31
32 } // namespace webkit_glue
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698