blob: 7ab091513328d4133e53249779e95a7459f027f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2015 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 COMPONENTS_HTML_VIEWER_UI_SETUP_H_
#define COMPONENTS_HTML_VIEWER_UI_SETUP_H_
#include "base/basictypes.h"
namespace gfx {
class Size;
}
namespace html_viewer {
// UISetup is intended for platform specific UI setup.
class UISetup {
public:
UISetup(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio) {}
~UISetup() {}
private:
DISALLOW_COPY_AND_ASSIGN(UISetup);
};
} // namespace html_viewer
#endif // COMPONENTS_HTML_VIEWER_UI_SETUP_H_
|