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 #include "android_webview/browser/child_frame.h" | 5 #include "android_webview/browser/child_frame.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "cc/output/compositor_frame.h" | 9 #include "cc/output/compositor_frame.h" |
10 | 10 |
11 namespace android_webview { | 11 namespace android_webview { |
12 | 12 |
13 ChildFrame::ChildFrame(scoped_ptr<cc::CompositorFrame> frame, | 13 ChildFrame::ChildFrame(uint32_t output_surface_id, |
| 14 scoped_ptr<cc::CompositorFrame> frame, |
14 uint32_t compositor_id, | 15 uint32_t compositor_id, |
15 bool viewport_rect_for_tile_priority_empty, | 16 bool viewport_rect_for_tile_priority_empty, |
16 const gfx::Transform& transform_for_tile_priority, | 17 const gfx::Transform& transform_for_tile_priority, |
17 bool offscreen_pre_raster, | 18 bool offscreen_pre_raster, |
18 bool is_layer) | 19 bool is_layer) |
19 : frame(std::move(frame)), | 20 : output_surface_id(output_surface_id), |
| 21 frame(std::move(frame)), |
20 compositor_id(compositor_id), | 22 compositor_id(compositor_id), |
21 viewport_rect_for_tile_priority_empty( | 23 viewport_rect_for_tile_priority_empty( |
22 viewport_rect_for_tile_priority_empty), | 24 viewport_rect_for_tile_priority_empty), |
23 transform_for_tile_priority(transform_for_tile_priority), | 25 transform_for_tile_priority(transform_for_tile_priority), |
24 offscreen_pre_raster(offscreen_pre_raster), | 26 offscreen_pre_raster(offscreen_pre_raster), |
25 is_layer(is_layer) {} | 27 is_layer(is_layer) {} |
26 | 28 |
27 ChildFrame::~ChildFrame() { | 29 ChildFrame::~ChildFrame() { |
28 } | 30 } |
29 | 31 |
30 } // namespace webview | 32 } // namespace webview |
OLD | NEW |