| Index: content/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| diff --git a/webkit/renderer/compositor_bindings/web_transform_operations_impl.cc b/content/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| similarity index 88%
|
| rename from webkit/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| rename to content/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| index 8201f5ae16e5f6fa4799c5e6ca5b32bfe2235ce5..9c3fbb29ed2ef051803ab7bc4c1be5a2a35f0171 100644
|
| --- a/webkit/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| +++ b/content/renderer/compositor_bindings/web_transform_operations_impl.cc
|
| @@ -2,15 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "webkit/renderer/compositor_bindings/web_transform_operations_impl.h"
|
| +#include "content/renderer/compositor_bindings/web_transform_operations_impl.h"
|
|
|
| #include <algorithm>
|
|
|
| #include "ui/gfx/transform.h"
|
|
|
| -namespace webkit {
|
| +namespace content {
|
|
|
| -WebTransformOperationsImpl::WebTransformOperationsImpl() {}
|
| +WebTransformOperationsImpl::WebTransformOperationsImpl() {
|
| +}
|
|
|
| const cc::TransformOperations&
|
| WebTransformOperationsImpl::AsTransformOperations() const {
|
| @@ -61,6 +62,8 @@ bool WebTransformOperationsImpl::isIdentity() const {
|
| return transform_operations_.IsIdentity();
|
| }
|
|
|
| -WebTransformOperationsImpl::~WebTransformOperationsImpl() {}
|
| +WebTransformOperationsImpl::~WebTransformOperationsImpl() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|
| -} // namespace webkit
|
|
|