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

Unified Diff: Source/core/dom/IconURL.cpp

Issue 196743002: Parse the link element's size attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: address comments Created 6 years, 9 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: Source/core/dom/IconURL.cpp
diff --git a/Source/core/dom/IconURL.cpp b/Source/core/dom/IconURL.cpp
index 248835b507e7c995f0c879c3ae1d8e04ad4ad25d..b427d1a81ebea3f7139b91783842ccb8dd6c4ce5 100644
--- a/Source/core/dom/IconURL.cpp
+++ b/Source/core/dom/IconURL.cpp
@@ -44,7 +44,7 @@ IconURL IconURL::defaultFavicon(const KURL& documentURL)
url.setPort(documentURL.port());
url.setPath("/favicon.ico");
- IconURL result(url, emptyString(), emptyString(), Favicon);
+ IconURL result(url, Vector<IntSize>(), emptyString(), Favicon);
result.m_isDefaultIcon = true;
return result;
}

Powered by Google App Engine
This is Rietveld 408576698