OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_HTML_VIEWER_UI_SETUP_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_UI_SETUP_H_ |
6 #define COMPONENTS_HTML_VIEWER_UI_SETUP_H_ | 6 #define COMPONENTS_HTML_VIEWER_UI_SETUP_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 | 9 |
| 10 namespace gfx { |
| 11 class Size; |
| 12 } |
| 13 |
10 namespace html_viewer { | 14 namespace html_viewer { |
11 | 15 |
12 // UISetup is intended for platform specific UI setup. | 16 // UISetup is intended for platform specific UI setup. |
13 class UISetup { | 17 class UISetup { |
14 public: | 18 public: |
15 UISetup() {} | 19 UISetup(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio) {} |
16 ~UISetup() {} | 20 ~UISetup() {} |
17 | 21 |
18 private: | 22 private: |
19 DISALLOW_COPY_AND_ASSIGN(UISetup); | 23 DISALLOW_COPY_AND_ASSIGN(UISetup); |
20 }; | 24 }; |
21 | 25 |
22 } // namespace html_viewer | 26 } // namespace html_viewer |
23 | 27 |
24 #endif // COMPONENTS_HTML_VIEWER_UI_SETUP_H_ | 28 #endif // COMPONENTS_HTML_VIEWER_UI_SETUP_H_ |
OLD | NEW |