[Autofill] remove *MultiInfo* functions
[chromium-blink-merge.git] / components / html_viewer / ui_setup_android.h
blobd9638e19a291efeb52ff18a0bdba99fac4f81d5d
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_ANDROID_H_
6 #define COMPONENTS_HTML_VIEWER_UI_SETUP_ANDROID_H_
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
11 namespace gfx {
12 class Screen;
13 class Size;
16 namespace ui {
17 class GestureConfiguration;
20 namespace html_viewer {
22 class GestureConfigurationMandoline;
24 class UISetup {
25 public:
26 UISetup(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio);
27 ~UISetup();
29 private:
30 scoped_ptr<gfx::Screen> screen_;
31 scoped_ptr<GestureConfigurationMandoline> gesture_configuration_;
33 DISALLOW_COPY_AND_ASSIGN(UISetup);
36 } // namespace html_viewer
38 #endif // COMPONENTS_HTML_VIEWER_UI_SETUP_ANDROID_H_