Index: third_party/WebKit/Source/core/css/FontFace.cpp |
diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp |
index 8aabfcb5968809b684c282c448e42d6038d2a26c..1f09cc51659ede06197fd8111f83a061d810df51 100644 |
--- a/third_party/WebKit/Source/core/css/FontFace.cpp |
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp |
@@ -96,9 +96,10 @@ FontFace* FontFace::create(ExecutionContext* context, |
const CSSValue* src = |
parseCSSValue(toDocument(context), source, CSSPropertySrc); |
if (!src || !src->isValueList()) |
- fontFace->setError(DOMException::create( |
- SyntaxError, "The source provided ('" + source + |
- "') could not be parsed as a value list.")); |
+ fontFace->setError( |
+ DOMException::create(SyntaxError, |
+ "The source provided ('" + source + |
+ "') could not be parsed as a value list.")); |
fontFace->initCSSFontFace(toDocument(context), src); |
return fontFace; |
@@ -377,9 +378,10 @@ void FontFace::setLoadStatus(LoadStatusType status) { |
if (m_loadedProperty) { |
if (m_status == Loaded) { |
getTaskRunner()->postTask( |
- BLINK_FROM_HERE, WTF::bind(&LoadedProperty::resolve<FontFace*>, |
- wrapPersistent(m_loadedProperty.get()), |
- wrapPersistent(this))); |
+ BLINK_FROM_HERE, |
+ WTF::bind(&LoadedProperty::resolve<FontFace*>, |
+ wrapPersistent(m_loadedProperty.get()), |
+ wrapPersistent(this))); |
} else |
m_loadedProperty->reject(m_error.get()); |
} |