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

Unified Diff: third_party/WebKit/Source/core/svg/SVGImageElement.cpp

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 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/svg/SVGImageElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGImageElement.cpp b/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
index 2d08ea45901a6a8c319d4fc30fcea7b63f4bcf52..715195dda8657a60e03048db9a85a4ff67fa8a41 100644
--- a/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
@@ -194,14 +194,15 @@ Node::InsertionNotificationRequest SVGImageElement::insertedInto(
if (!rootParent->isConnected())
return InsertionDone;
- // We can only resolve base URIs properly after tree insertion - hence, URI mutations while
- // detached are deferred until this point.
+ // We can only resolve base URIs properly after tree insertion - hence, URI
+ // mutations while detached are deferred until this point.
if (m_needsLoaderURIUpdate) {
imageLoader().updateFromElement(ImageLoader::UpdateIgnorePreviousError);
m_needsLoaderURIUpdate = false;
} else {
- // A previous loader update may have failed to actually fetch the image if the document
- // was inactive. In that case, force a re-update (but don't clear previous errors).
+ // A previous loader update may have failed to actually fetch the image if
+ // the document was inactive. In that case, force a re-update (but don't
+ // clear previous errors).
if (!imageLoader().image())
imageLoader().updateFromElement();
}

Powered by Google App Engine
This is Rietveld 408576698