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

Unified Diff: Source/core/css/CSSStyleSheet.cpp

Issue 1206573002: DevTools: remove unused parts of the CSS instrumentation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Source/core/css/PropertySetCSSStyleDeclaration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSStyleSheet.cpp
diff --git a/Source/core/css/CSSStyleSheet.cpp b/Source/core/css/CSSStyleSheet.cpp
index ab1f3d21ee8ad0776dcbfcdd5a0968afb541f520..f4ceccaa9341adc36ab1caf1545b55212efc58a4 100644
--- a/Source/core/css/CSSStyleSheet.cpp
+++ b/Source/core/css/CSSStyleSheet.cpp
@@ -162,8 +162,6 @@ CSSStyleSheet::~CSSStyleSheet()
void CSSStyleSheet::willMutateRules()
{
- InspectorInstrumentation::willMutateRules(this);
-
// If we are the only client it is safe to mutate.
if (m_contents->clientSize() <= 1 && !m_contents->isInMemoryCache()) {
m_contents->clearRuleSet();
@@ -191,7 +189,6 @@ void CSSStyleSheet::didMutateRules()
ASSERT(m_contents->isMutable());
ASSERT(m_contents->clientSize() <= 1);
- InspectorInstrumentation::didMutateRules(this);
didMutate(PartialRuleUpdate);
}
« no previous file with comments | « no previous file | Source/core/css/PropertySetCSSStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698