Roll src/third_party/skia 0a24297:ceadfef
[chromium-blink-merge.git] / components / html_viewer / ui_setup.h
blob7ab091513328d4133e53249779e95a7459f027f6
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_HTML_VIEWER_UI_SETUP_H_
6 #define COMPONENTS_HTML_VIEWER_UI_SETUP_H_
8 #include "base/basictypes.h"
10 namespace gfx {
11 class Size;
14 namespace html_viewer {
16 // UISetup is intended for platform specific UI setup.
17 class UISetup {
18 public:
19 UISetup(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio) {}
20 ~UISetup() {}
22 private:
23 DISALLOW_COPY_AND_ASSIGN(UISetup);
26 } // namespace html_viewer
28 #endif // COMPONENTS_HTML_VIEWER_UI_SETUP_H_