Index: third_party/WebKit/Source/core/html/LinkRelAttribute.cpp |
diff --git a/third_party/WebKit/Source/core/html/LinkRelAttribute.cpp b/third_party/WebKit/Source/core/html/LinkRelAttribute.cpp |
index 204ebfa038afa6546f17d6a1e1845d77f91bad71..7e2151a1f01b1033eb782a7c8c582e9a87080b68 100644 |
--- a/third_party/WebKit/Source/core/html/LinkRelAttribute.cpp |
+++ b/third_party/WebKit/Source/core/html/LinkRelAttribute.cpp |
@@ -31,8 +31,6 @@ |
#include "core/html/LinkRelAttribute.h" |
-#include "platform/RuntimeEnabledFeatures.h" |
- |
namespace blink { |
LinkRelAttribute::LinkRelAttribute(const String& rel) |
@@ -76,8 +74,7 @@ LinkRelAttribute::LinkRelAttribute(const String& rel) |
} else if (equalIgnoringCase(linkType, "preconnect")) { |
m_isPreconnect = true; |
} else if (equalIgnoringCase(linkType, "preload")) { |
- if (RuntimeEnabledFeatures::linkPreloadEnabled()) |
- m_isLinkPreload = true; |
+ m_isLinkPreload = true; |
} else if (equalIgnoringCase(linkType, "prerender")) { |
m_isLinkPrerender = true; |
} else if (equalIgnoringCase(linkType, "next")) { |