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

Unified Diff: cc/transform_operations.h

Issue 11644004: Only create instances of WebTransformOperations using cc::TransformOperations::Create (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase, and fix WebTransformAnimationCurveImpl Created 8 years 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: cc/transform_operations.h
diff --git a/cc/transform_operations.h b/cc/transform_operations.h
new file mode 100644
index 0000000000000000000000000000000000000000..95124fe44312c4fb0af59cf56d891dd30a70cf64
--- /dev/null
+++ b/cc/transform_operations.h
@@ -0,0 +1,25 @@
+// Copyright 2012 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 CC_TRANSFORM_OPERATIONS_H_
+#define CC_TRANSFORM_OPERATIONS_H_
+
+#include "cc/cc_export.h"
+
+namespace WebKit {
+class WebTransformOperations;
+}
+
+namespace cc {
+
+class CC_EXPORT TransformOperations {
+ public:
+ static WebKit::WebTransformOperations* Create();
+ static WebKit::WebTransformOperations* Create(
+ const WebKit::WebTransformOperations& prototype);
+};
+
+} // namespace cc
+
+#endif // CC_TRANSFORM_OPERATIONS_H_

Powered by Google App Engine
This is Rietveld 408576698