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

Side by Side Diff: third_party/WebKit/Source/core/css/ElementRuleCollector.cpp

Issue 2759703003: DevTools: add support for polling for coverage data in CSS agent (Closed)
Patch Set: got rid of m_unusedRulesToCSSRules map as per pfeldman's suggestions Created 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
6 * All rights reserved. 6 * All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
10 * (http://www.torchmobile.com/) 10 * (http://www.torchmobile.com/)
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 // about "scope". 371 // about "scope".
372 MatchRequest matchRequest(ruleSet); 372 MatchRequest matchRequest(ruleSet);
373 collectMatchingRules(matchRequest); 373 collectMatchingRules(matchRequest);
374 collectMatchingShadowHostRules(matchRequest); 374 collectMatchingShadowHostRules(matchRequest);
375 375
376 return !m_matchedRules.isEmpty(); 376 return !m_matchedRules.isEmpty();
377 } 377 }
378 378
379 void ElementRuleCollector::addMatchedRulesToTracker( 379 void ElementRuleCollector::addMatchedRulesToTracker(
380 StyleRuleUsageTracker* tracker) const { 380 StyleRuleUsageTracker* tracker) const {
381 for (auto matchedRule : m_matchedRules) 381 for (auto matchedRule : m_matchedRules) {
382 tracker->track(matchedRule.ruleData()->rule()); 382 tracker->track(matchedRule.ruleData()->rule(),
pfeldman 2017/03/21 18:04:15 nit: swap parameters :)
383 matchedRule.parentStyleSheet());
384 }
383 } 385 }
384 386
385 } // namespace blink 387 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698