Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GFX_WIN_PHYSICAL_SIZE_H_ | |
| 6 #define UI_GFX_WIN_PHYSICAL_SIZE_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "ui/gfx/gfx_export.h" | |
| 12 | |
| 13 namespace gfx { | |
| 14 | |
| 15 struct PhysicalDisplaySize { | |
| 16 std::string display_name; | |
| 17 int width_mm; | |
| 18 int height_mm; | |
| 19 | |
| 20 PhysicalDisplaySize(std::string display_name, int width_mm, int height_mm) | |
|
scottmg
2016/01/12 01:03:13
Always pass std::string as "const std::string&".
Bret
2016/01/12 22:55:17
Done.
| |
| 21 : display_name(display_name), width_mm(width_mm), height_mm(height_mm) {} | |
| 22 }; | |
| 23 | |
| 24 // Gets the physical size for all displays. | |
| 25 void GFX_EXPORT | |
|
scottmg
2016/01/12 01:03:13
GFX_EXPORT before void, not after.
Bret
2016/01/12 22:55:17
Done.
| |
| 26 GetPhysicalSizeForDisplays(std::vector<PhysicalDisplaySize>* out); | |
|
scottmg
2016/01/12 01:03:13
Consider having this return std::vector<PhysicalDi
Bret
2016/01/12 22:55:17
Done.
| |
| 27 | |
| 28 } // namespace gfx | |
| 29 | |
| 30 #endif // UI_GFX_DPI_WIN_H_ | |
| OLD | NEW |