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

Unified Diff: Source/core/css/CSSFontValue.cpp

Issue 26134002: Add *CSS* prefix to FontValue and FontFeatureValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
« no previous file with comments | « Source/core/css/CSSFontValue.h ('k') | Source/core/css/CSSParser-in.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/core/css/CSSFontValue.h ('k') | Source/core/css/CSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698