Index: Source/core/css/CSSFontValue.cpp |
diff --git a/Source/core/css/FontValue.cpp b/Source/core/css/CSSFontValue.cpp |
similarity index 94% |
rename from Source/core/css/FontValue.cpp |
rename to Source/core/css/CSSFontValue.cpp |
index 5537183a15fd1d2002ccf26c0c27cc1982cb5539..e4eaee5c47efaf192358f4975aec0cbe0eae5ce6 100644 |
--- a/Source/core/css/FontValue.cpp |
+++ b/Source/core/css/CSSFontValue.cpp |
@@ -18,7 +18,7 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
#include "config.h" |
-#include "core/css/FontValue.h" |
+#include "core/css/CSSFontValue.h" |
#include "core/css/CSSPrimitiveValue.h" |
#include "core/css/CSSValueList.h" |
@@ -26,7 +26,7 @@ |
namespace WebCore { |
-String FontValue::customCssText() const |
+String CSSFontValue::customCssText() const |
{ |
// font variant weight size / line-height family |
@@ -64,7 +64,7 @@ String FontValue::customCssText() const |
return result.toString(); |
} |
-bool FontValue::equals(const FontValue& other) const |
+bool CSSFontValue::equals(const CSSFontValue& other) const |
{ |
return compareCSSValuePtr(style, other.style) |
&& compareCSSValuePtr(variant, other.variant) |