| Index: android_webview/browser/graphic_buffer_factory_impl.cc
|
| diff --git a/android_webview/browser/graphic_buffer_factory_impl.cc b/android_webview/browser/graphic_buffer_factory_impl.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cc94590cca47d2d33659a54da4b2cd9b44ff5f54
|
| --- /dev/null
|
| +++ b/android_webview/browser/graphic_buffer_factory_impl.cc
|
| @@ -0,0 +1,16 @@
|
| +// Copyright 2013 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/graphic_buffer_factory_impl.h"
|
| +
|
| +#include "android_webview/browser/graphic_buffer_impl.h"
|
| +
|
| +namespace android_webview {
|
| +
|
| +scoped_ptr<cc::GraphicBuffer> CreateGraphicBuffer(const gfx::Size& size) {
|
| + scoped_ptr<GraphicBufferImpl> result(new GraphicBufferImpl(size));
|
| + return result.PassAs<cc::GraphicBuffer>();
|
| +}
|
| +
|
| +} // namespace android_webview
|
|
|