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

Unified Diff: ui/gfx/win/display_info.h

Issue 1639623003: ScreenWin Testability and Restructuring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync + VS2015 Friendly - struct -> class to maintain immutability Created 4 years, 10 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
« no previous file with comments | « ui/gfx/test/gfx_util.cc ('k') | ui/gfx/win/display_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/win/display_info.h
diff --git a/ui/gfx/win/display_info.h b/ui/gfx/win/display_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..cd972dfcf78b2ae42743c55d0138be2f447b46a7
--- /dev/null
+++ b/ui/gfx/win/display_info.h
@@ -0,0 +1,44 @@
+// Copyright 2016 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 UI_GFX_WIN_DISPLAY_INFO_H_
+#define UI_GFX_WIN_DISPLAY_INFO_H_
+
+#include <windows.h>
+#include <stdint.h>
+
+#include "ui/gfx/display.h"
+#include "ui/gfx/gfx_export.h"
+
+namespace gfx {
+namespace win {
+
+// Gathers the parameters necessary to create a gfx::win::ScreenWinDisplay.
+class GFX_EXPORT DisplayInfo final {
+ public:
+ DisplayInfo(const MONITORINFOEX& monitor_info, float device_scale_factor);
+ DisplayInfo(const MONITORINFOEX& monitor_info,
+ float device_scale_factor,
+ gfx::Display::Rotation rotation);
+
+ static int64_t DeviceIdFromDeviceName(const wchar_t* device_name);
+
+ int64_t id() const { return id_; }
+ gfx::Display::Rotation rotation() const { return rotation_; }
+ const gfx::Rect& screen_rect() const { return screen_rect_; }
+ const gfx::Rect& screen_work_rect() const { return screen_work_rect_; }
+ float device_scale_factor() const { return device_scale_factor_; }
+
+ private:
+ int64_t id_;
+ gfx::Display::Rotation rotation_;
+ gfx::Rect screen_rect_;
+ gfx::Rect screen_work_rect_;
+ float device_scale_factor_;
+};
+
+} // namespace win
+} // namespace gfx
+
+#endif // UI_GFX_WIN_DISPLAY_INFO_H_
« no previous file with comments | « ui/gfx/test/gfx_util.cc ('k') | ui/gfx/win/display_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698