| Index: ui/mojo/init/ui_init.h
|
| diff --git a/ui/mojo/init/ui_init.h b/ui/mojo/init/ui_init.h
|
| index eeaebc66fa160ab099215c380e858138bf9e1683..48ca7dbf685391b372c02a5a3a97dd66da5aa38d 100644
|
| --- a/ui/mojo/init/ui_init.h
|
| +++ b/ui/mojo/init/ui_init.h
|
| @@ -5,13 +5,15 @@
|
| #ifndef UI_MOJO_INIT_UI_INIT_H_
|
| #define UI_MOJO_INIT_UI_INIT_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "base/basictypes.h"
|
| #include "base/callback_forward.h"
|
| #include "base/memory/scoped_ptr.h"
|
|
|
| namespace gfx {
|
| +class Display;
|
| class Screen;
|
| -class Size;
|
| }
|
|
|
| namespace ui {
|
| @@ -25,7 +27,7 @@ class GestureConfigurationMojo;
|
| // including aura).
|
| class UIInit {
|
| public:
|
| - UIInit(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio);
|
| + explicit UIInit(const std::vector<gfx::Display>& displays);
|
| ~UIInit();
|
|
|
| private:
|
|
|