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

Unified Diff: Source/core/html/LinkRelAttribute.cpp

Issue 16294006: Remove duplicated else if "dns-prefetch" branch (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/LinkRelAttribute.cpp
diff --git a/Source/core/html/LinkRelAttribute.cpp b/Source/core/html/LinkRelAttribute.cpp
index b9df78ffe6b076a488cf713a8b202226ffa14f04..68b1c78e0035c7e757222e45a3c7350c793ee2c9 100644
--- a/Source/core/html/LinkRelAttribute.cpp
+++ b/Source/core/html/LinkRelAttribute.cpp
@@ -71,8 +71,6 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
m_isStyleSheet = true;
m_isAlternate = true;
- } else if (equalIgnoringCase(rel, "dns-prefetch")) {
- m_isDNSPrefetch = true;
} else if (equalIgnoringCase(rel, "import")) {
m_isImport = true;
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698