OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ | 5 #ifndef CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ |
6 #define CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ | 6 #define CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include "base/macros.h" | 11 #include "base/macros.h" |
9 #include "content/common/input/input_event_ack_state.h" | 12 #include "content/common/input/input_event_ack_state.h" |
10 #include "content/renderer/android/synchronous_compositor_external_begin_frame_s
ource.h" | 13 #include "content/renderer/android/synchronous_compositor_external_begin_frame_s
ource.h" |
11 #include "content/renderer/android/synchronous_compositor_output_surface.h" | 14 #include "content/renderer/android/synchronous_compositor_output_surface.h" |
12 #include "content/renderer/input/input_handler_manager_client.h" | 15 #include "content/renderer/input/input_handler_manager_client.h" |
13 #include "ui/events/blink/synchronous_input_handler_proxy.h" | 16 #include "ui/events/blink/synchronous_input_handler_proxy.h" |
14 #include "ui/gfx/geometry/scroll_offset.h" | 17 #include "ui/gfx/geometry/scroll_offset.h" |
15 #include "ui/gfx/geometry/size_f.h" | 18 #include "ui/gfx/geometry/size_f.h" |
16 | 19 |
17 namespace IPC { | 20 namespace IPC { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 bool need_invalidate_; | 125 bool need_invalidate_; |
123 bool need_begin_frame_; | 126 bool need_begin_frame_; |
124 bool did_activate_pending_tree_; | 127 bool did_activate_pending_tree_; |
125 | 128 |
126 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorProxy); | 129 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorProxy); |
127 }; | 130 }; |
128 | 131 |
129 } // namespace content | 132 } // namespace content |
130 | 133 |
131 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ | 134 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_PROXY_H_ |
OLD | NEW |