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

Unified Diff: webkit/glue/screen_info.h

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, 9 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 side-by-side diff with in-line comments
Download patch
Index: webkit/glue/screen_info.h
===================================================================
--- webkit/glue/screen_info.h (revision 12916)
+++ webkit/glue/screen_info.h (working copy)
@@ -1,39 +0,0 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
-// source code is governed by a BSD-style license that can be found in the
-// LICENSE file.
-
-#ifndef WEBKIT_GLUE_SCREEN_INFO_H_
-#define WEBKIT_GLUE_SCREEN_INFO_H_
-
-#include "base/gfx/rect.h"
-
-namespace webkit_glue {
-
-struct ScreenInfo {
- // The screen depth in bits per pixel
- int depth;
- // The bits per colour component. This assumes that the colours are balanced
- // equally.
- int depth_per_component;
- // This can be true for black and white printers
- bool is_monochrome;
- // This is set from the rcMonitor member of MONITORINFOEX, to whit:
- // "A RECT structure that specifies the display monitor rectangle,
- // expressed in virtual-screen coordinates. Note that if the monitor is not
- // the primary display monitor, some of the rectangle's coordinates may be
- // negative values."
- gfx::Rect rect;
- // This is set from the rcWork member of MONITORINFOEX, to whit:
- // "A RECT structure that specifies the work area rectangle of the display
- // monitor that can be used by applications, expressed in virtual-screen
- // coordinates. Windows uses this rectangle to maximize an application on
- // the monitor. The rest of the area in rcMonitor contains system windows
- // such as the task bar and side bars. Note that if the monitor is not the
- // primary display monitor, some of the rectangle's coordinates may be
- // negative values".
- gfx::Rect available_rect;
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_GLUE_SCREEN_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698