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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageInterpolationType.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/CSSImageInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/ImageInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.h
similarity index 90%
rename from third_party/WebKit/Source/core/animation/ImageInterpolationType.h
rename to third_party/WebKit/Source/core/animation/CSSImageInterpolationType.h
index 771f6baa0d39a882c3b838068558f1d8ef208e88..6bbbe25f250f6adbfe20ddf3065a66e6478a0f44 100644
--- a/third_party/WebKit/Source/core/animation/ImageInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.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 ImageInterpolationType_h
-#define ImageInterpolationType_h
+#ifndef CSSImageInterpolationType_h
+#define CSSImageInterpolationType_h
#include "core/animation/CSSInterpolationType.h"
@@ -11,9 +11,9 @@ namespace blink {
class StyleImage;
-class ImageInterpolationType : public CSSInterpolationType {
+class CSSImageInterpolationType : public CSSInterpolationType {
public:
- ImageInterpolationType(CSSPropertyID property)
+ CSSImageInterpolationType(CSSPropertyID property)
: CSSInterpolationType(property)
{ }
@@ -40,4 +40,4 @@ private:
} // namespace blink
-#endif // ImageInterpolationType_h
+#endif // CSSImageInterpolationType_h

Powered by Google App Engine
This is Rietveld 408576698