| Index: cc/output/output_surface_frame.cc
|
| diff --git a/cc/output/output_surface_frame.cc b/cc/output/output_surface_frame.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e3bb0fdab5bc46e610c9250d15a0979d7480f6fa
|
| --- /dev/null
|
| +++ b/cc/output/output_surface_frame.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2016 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 "cc/output/output_surface_frame.h"
|
| +
|
| +namespace cc {
|
| +
|
| +OutputSurfaceFrame::OutputSurfaceFrame() = default;
|
| +
|
| +OutputSurfaceFrame::OutputSurfaceFrame(OutputSurfaceFrame&& other) = default;
|
| +
|
| +OutputSurfaceFrame::~OutputSurfaceFrame() = default;
|
| +
|
| +OutputSurfaceFrame& OutputSurfaceFrame::operator=(OutputSurfaceFrame&& other) =
|
| + default;
|
| +
|
| +} // namespace cc
|
|
|