| Index: android_webview/browser/child_frame.cc
|
| diff --git a/android_webview/browser/child_frame.cc b/android_webview/browser/child_frame.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e267577d63c4eff2508cf23f939f3e8f0841d492
|
| --- /dev/null
|
| +++ b/android_webview/browser/child_frame.cc
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "android_webview/browser/child_frame.h"
|
| +
|
| +#include "cc/output/compositor_frame.h"
|
| +
|
| +namespace android_webview {
|
| +
|
| +ChildFrame::ChildFrame(scoped_ptr<cc::CompositorFrame> frame,
|
| + const gfx::Rect& viewport_for_tile_priority,
|
| + const gfx::Transform& transform_for_tile_priority,
|
| + bool offscreen_pre_raster,
|
| + bool is_layer)
|
| + : frame(frame.Pass()),
|
| + viewport_for_tile_priority(viewport_for_tile_priority),
|
| + transform_for_tile_priority(transform_for_tile_priority),
|
| + offscreen_pre_raster(offscreen_pre_raster),
|
| + is_layer(is_layer) {
|
| +}
|
| +
|
| +ChildFrame::~ChildFrame() {
|
| +}
|
| +
|
| +} // namespace webview
|
|
|