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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp

Issue 2181263002: Remove unused code from HTMLLinkElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
index eba8125c3c599b64990771d178a5689e7d0130ca..4427d8339ef9e42ec4953fecb3e658063ba1102b 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
@@ -663,8 +663,7 @@ void LinkStyle::process()
bool mediaQueryMatches = true;
LocalFrame* frame = loadingFrame();
- if (!m_owner->media().isEmpty() && frame && frame->document()) {
- RefPtr<ComputedStyle> documentStyle = StyleResolver::styleForDocument(*frame->document());
+ if (!m_owner->media().isEmpty() && frame) {
MediaQuerySet* media = MediaQuerySet::create(m_owner->media());
MediaQueryEvaluator evaluator(frame);
mediaQueryMatches = evaluator.eval(media);
« 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