| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "views/widget/native_widget_wayland.h" | 5 #include "views/widget/native_widget_wayland.h" |
| 6 | 6 |
| 7 #include <cairo.h> | |
| 8 #include <cairo-gl.h> | |
| 9 #include <EGL/egl.h> | 7 #include <EGL/egl.h> |
| 10 #include <GL/gl.h> | 8 #include <GL/gl.h> |
| 9 #include <cairo-gl.h> |
| 10 #include <cairo.h> |
| 11 #include <wayland-egl.h> | 11 #include <wayland-egl.h> |
| 12 | 12 |
| 13 #include <algorithm> | 13 #include <algorithm> |
| 14 #include <list> | 14 #include <list> |
| 15 | 15 |
| 16 #include "base/bind.h" | 16 #include "base/bind.h" |
| 17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 18 #include "base/wayland/wayland_event.h" | 18 #include "base/wayland/wayland_event.h" |
| 19 #include "ui/base/view_prop.h" | 19 #include "ui/base/view_prop.h" |
| 20 #include "ui/gfx/canvas_skia_paint.h" | 20 #include "ui/gfx/canvas_skia_paint.h" |
| 21 #include "ui/gfx/compositor/compositor.h" | 21 #include "ui/gfx/compositor/compositor.h" |
| 22 #include "ui/gfx/gl/gl_surface.h" | 22 #include "ui/gfx/gl/gl_surface.h" |
| 23 #include "ui/gfx/gl/gl_surface_egl.h" | 23 #include "ui/gfx/gl/gl_surface_egl.h" |
| 24 #include "ui/views/ime/input_method_wayland.h" |
| 24 #include "ui/wayland/wayland_display.h" | 25 #include "ui/wayland/wayland_display.h" |
| 25 #include "ui/wayland/wayland_input_device.h" | 26 #include "ui/wayland/wayland_input_device.h" |
| 26 #include "ui/wayland/wayland_screen.h" | 27 #include "ui/wayland/wayland_screen.h" |
| 27 #include "ui/wayland/wayland_window.h" | 28 #include "ui/wayland/wayland_window.h" |
| 28 #include "views/ime/input_method_wayland.h" | |
| 29 #include "views/views_delegate.h" | 29 #include "views/views_delegate.h" |
| 30 #include "views/widget/native_widget_views.h" | 30 #include "views/widget/native_widget_views.h" |
| 31 #include "views/widget/root_view.h" | 31 #include "views/widget/root_view.h" |
| 32 #include "views/widget/tooltip_manager_views.h" | 32 #include "views/widget/tooltip_manager_views.h" |
| 33 | 33 |
| 34 using ui::ViewProp; | 34 using ui::ViewProp; |
| 35 | 35 |
| 36 using base::wayland::WaylandEvent; | 36 using base::wayland::WaylandEvent; |
| 37 | 37 |
| 38 namespace views { | 38 namespace views { |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 | 674 |
| 675 // static | 675 // static |
| 676 bool NativeWidgetPrivate::IsMouseButtonDown() { | 676 bool NativeWidgetPrivate::IsMouseButtonDown() { |
| 677 NOTIMPLEMENTED(); | 677 NOTIMPLEMENTED(); |
| 678 return false; | 678 return false; |
| 679 } | 679 } |
| 680 | 680 |
| 681 } // namespace internal | 681 } // namespace internal |
| 682 | 682 |
| 683 } // namespace views | 683 } // namespace views |
| OLD | NEW |