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

Unified Diff: third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.h

Issue 1409073009: Prefix CSSInterpolationType subclasses with "CSS" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_unCSSInterpolationType
Patch Set: CSSNIVs Created 5 years, 2 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/core/animation/CSSLengthInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/LengthInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.h
similarity index 88%
rename from third_party/WebKit/Source/core/animation/LengthInterpolationType.h
rename to third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.h
index 8d35b951bcc7c4711de6b9cb8a3a70633a3c40e0..344b2a876bd90a7336be4c2a774b79680f542694 100644
--- a/third_party/WebKit/Source/core/animation/LengthInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef LengthInterpolationType_h
-#define LengthInterpolationType_h
+#ifndef CSSLengthInterpolationType_h
+#define CSSLengthInterpolationType_h
#include "core/animation/CSSInterpolationType.h"
#include "core/animation/LengthPropertyFunctions.h"
@@ -12,9 +12,9 @@ namespace blink {
class ComputedStyle;
-class LengthInterpolationType : public CSSInterpolationType {
+class CSSLengthInterpolationType : public CSSInterpolationType {
public:
- LengthInterpolationType(CSSPropertyID);
+ CSSLengthInterpolationType(CSSPropertyID);
PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const InterpolationEnvironment&) const final;
void composite(UnderlyingValue&, double underlyingFraction, const InterpolationValue&) const final;
@@ -40,4 +40,4 @@ private:
} // namespace blink
-#endif // LengthInterpolationType_h
+#endif // CSSLengthInterpolationType_h

Powered by Google App Engine
This is Rietveld 408576698