Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: android_webview/browser/child_frame.cc

Issue 1001643004: Remove android webview rendering cruft (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename var Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « android_webview/browser/child_frame.h ('k') | android_webview/browser/hardware_renderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "android_webview/browser/child_frame.h"
6
7 #include "cc/output/compositor_frame.h"
8
9 namespace android_webview {
10
11 ChildFrame::ChildFrame(scoped_ptr<cc::CompositorFrame> frame,
12 const gfx::Rect& viewport_rect_for_tile_priority,
13 const gfx::Transform& transform_for_tile_priority,
14 bool offscreen_pre_raster,
15 bool is_layer)
16 : frame(frame.Pass()),
17 viewport_rect_for_tile_priority(viewport_rect_for_tile_priority),
18 transform_for_tile_priority(transform_for_tile_priority),
19 offscreen_pre_raster(offscreen_pre_raster),
20 is_layer(is_layer) {
21 }
22
23 ChildFrame::~ChildFrame() {
24 }
25
26 } // namespace webview
OLDNEW
« no previous file with comments | « android_webview/browser/child_frame.h ('k') | android_webview/browser/hardware_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698