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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorFloatKeyframe.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GC Created 4 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: third_party/WebKit/Source/platform/animation/CompositorFloatKeyframe.h
diff --git a/third_party/WebKit/public/platform/WebFloatKeyframe.h b/third_party/WebKit/Source/platform/animation/CompositorFloatKeyframe.h
similarity index 88%
rename from third_party/WebKit/public/platform/WebFloatKeyframe.h
rename to third_party/WebKit/Source/platform/animation/CompositorFloatKeyframe.h
index 5a8e7d6041e547e674cb1e88b207be275770109b..31de201faed1ae7f4b1fc0de741af444d7f7291d 100644
--- a/third_party/WebKit/public/platform/WebFloatKeyframe.h
+++ b/third_party/WebKit/Source/platform/animation/CompositorFloatKeyframe.h
@@ -22,13 +22,13 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebFloatKeyframe_h
-#define WebFloatKeyframe_h
+#ifndef CompositorFloatKeyframe_h
+#define CompositorFloatKeyframe_h
namespace blink {
-struct WebFloatKeyframe {
- WebFloatKeyframe(double time, float value)
+struct CompositorFloatKeyframe {
+ CompositorFloatKeyframe(double time, float value)
: time(time)
, value(value)
{
@@ -40,4 +40,4 @@ struct WebFloatKeyframe {
} // namespace blink
-#endif // WebFloatKeyframe_h
+#endif // CompositorFloatKeyframe_h

Powered by Google App Engine
This is Rietveld 408576698