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

Unified Diff: third_party/WebKit/Source/core/css/FontFace.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/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());
}

Powered by Google App Engine
This is Rietveld 408576698