| Index: ui/display/win/display_info.h
|
| diff --git a/ui/display/win/display_info.h b/ui/display/win/display_info.h
|
| deleted file mode 100644
|
| index d9abdc3f2a7492b4a9028319e56188e9f0a9b73d..0000000000000000000000000000000000000000
|
| --- a/ui/display/win/display_info.h
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -// 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_DISPLAY_WIN_DISPLAY_INFO_H_
|
| -#define UI_DISPLAY_WIN_DISPLAY_INFO_H_
|
| -
|
| -#include <windows.h>
|
| -#include <stdint.h>
|
| -
|
| -#include "ui/display/display_export.h"
|
| -#include "ui/gfx/display.h"
|
| -
|
| -namespace display {
|
| -namespace win {
|
| -
|
| -// Gathers the parameters necessary to create a display::win::ScreenWinDisplay.
|
| -class DISPLAY_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 display
|
| -
|
| -#endif // UI_DISPLAY_WIN_DISPLAY_INFO_H_
|
|
|