summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 22:39:02 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 22:39:02 +0000
commitd1bc54a8c50707918b85e311d3e32c7870eb983f (patch)
tree4b03e8d95733525b162f8a6f2bf774d1297a5f97 /webkit
parent9eb0a1460cd17caae16c575617c976a515bcdc0e (diff)
downloadchromium_src-d1bc54a8c50707918b85e311d3e32c7870eb983f.zip
chromium_src-d1bc54a8c50707918b85e311d3e32c7870eb983f.tar.gz
chromium_src-d1bc54a8c50707918b85e311d3e32c7870eb983f.tar.bz2
Add missing file. Oops :(
TBR=dglazkov Review URL: http://codereview.chromium.org/8789 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4338 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/screen_info.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/webkit/glue/screen_info.h b/webkit/glue/screen_info.h
new file mode 100644
index 0000000..b904a9b
--- /dev/null
+++ b/webkit/glue/screen_info.h
@@ -0,0 +1,22 @@
+// 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 {
+ int depth;
+ int depth_per_component;
+ bool is_monochrome;
+ gfx::Rect rect;
+ gfx::Rect available_rect;
+};
+
+} // namespace webkit_glue
+
+#endif // WEBKIT_GLUE_SCREEN_INFO_H_