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

Unified Diff: Source/core/inspector/InspectorCSSAgent.cpp

Issue 296743003: Removed RecalcStyleTime. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased. Created 6 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 | « Source/core/html/HTMLStyleElement.cpp ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorCSSAgent.cpp
diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp
index ca2f6a2821788d1a96ab47d2ed75598cfaa374b9..cd780481434e361d7ad60b9665863aa13774bf6a 100644
--- a/Source/core/inspector/InspectorCSSAgent.cpp
+++ b/Source/core/inspector/InspectorCSSAgent.cpp
@@ -432,7 +432,7 @@ void InspectorCSSAgent::didMutateRules(CSSStyleSheet* styleSheet)
if (!styleSheetEditInProgress()) {
Document* owner = styleSheet->ownerDocument();
if (owner)
- owner->modifiedStyleSheet(styleSheet, RecalcStyleDeferred, FullStyleUpdate);
+ owner->modifiedStyleSheet(styleSheet, FullStyleUpdate);
}
}
@@ -449,7 +449,7 @@ void InspectorCSSAgent::didMutateStyle(CSSStyleDeclaration* style, bool isInline
CSSStyleSheet* parentSheet = style->parentStyleSheet();
Document* owner = parentSheet ? parentSheet->ownerDocument() : 0;
if (owner)
- owner->modifiedStyleSheet(parentSheet, RecalcStyleDeferred, FullStyleUpdate);
+ owner->modifiedStyleSheet(parentSheet, FullStyleUpdate);
}
}
« no previous file with comments | « Source/core/html/HTMLStyleElement.cpp ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698