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

Unified Diff: webkit/compositor_bindings/web_transform_operations_impl.h

Issue 11876016: Define cc::TransformOperations and webkit::WebTransformOperationsImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Put TransformOperation into its own header Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: webkit/compositor_bindings/web_transform_operations_impl.h
diff --git a/webkit/compositor_bindings/web_transform_operations_impl.h b/webkit/compositor_bindings/web_transform_operations_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..f4138a95fd58aebc5cd9cba77cadb7416a615fea
--- /dev/null
+++ b/webkit/compositor_bindings/web_transform_operations_impl.h
@@ -0,0 +1,45 @@
+// 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.
+
+#ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_TRANSFORM_OPERATIONS_IMPL_H_
+#define WEBKIT_COMPOSITOR_BINDINGS_WEB_TRANSFORM_OPERATIONS_IMPL_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "cc/transform_operations.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
+#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"
+
+namespace webkit {
+
+#if WEB_TRANSFORM_OPERATIONS_IS_VIRTUAL
+class WebTransformOperationsImpl : public WebKit::WebTransformOperations {
+ public:
+ WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebTransformOperationsImpl();
+ virtual ~WebTransformOperationsImpl();
+
+ const cc::TransformOperations& AsTransformOperations() const;
+
+ // Implementation of WebKit::WebTransformOperations methods
+ virtual bool canBlendWith(
+ const WebKit::WebTransformOperations& other) const OVERRIDE;
+ virtual void appendTranslate(double x, double y, double z) OVERRIDE;
+ virtual void appendRotate(
+ double x, double y, double z, double degrees) OVERRIDE;
+ virtual void appendScale(double x, double y, double z) OVERRIDE;
+ virtual void appendSkew(double x, double y) OVERRIDE;
+ virtual void appendPerspective(double depth) OVERRIDE;
+ virtual void appendMatrix(const WebKit::WebTransformationMatrix&) OVERRIDE;
+ virtual void appendIdentity() OVERRIDE;
+ virtual bool isIdentity() const OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(WebTransformOperationsImpl);
+
+ cc::TransformOperations transform_operations_;
+};
+#endif // WEB_TRANSFORM_OPERATIONS_IS_VIRTUAL
+
+} // namespace webkit
+
+#endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_TRANSFORM_OPERATIONS_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698