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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_TRANSFORM_OPERATIONS_H_
6 #define CC_TRANSFORM_OPERATIONS_H_
7
8 #include "cc/cc_export.h"
9
10 namespace WebKit {
11 class WebTransformOperations;
12 }
13
14 namespace cc {
15
16 class CC_EXPORT TransformOperations {
17 public:
18 static WebKit::WebTransformOperations* Create();
19 static WebKit::WebTransformOperations* Create(
20 const WebKit::WebTransformOperations& prototype);
21 };
22
23 } // namespace cc
24
25 #endif // CC_TRANSFORM_OPERATIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698