Searched defs:updateMode (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentStyleSheetCollection.cpp93 void DocumentStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine, StyleResolverUpdateMode updateMode) argument
100 analyzeStyleSheetChange(updateMode, collection, change);
H A DShadowTreeStyleSheetCollection.cpp90 void ShadowTreeStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine, StyleResolverUpdateMode updateMode) argument
96 analyzeStyleSheetChange(updateMode, collection, change);
H A DTreeScopeStyleSheetCollection.cpp130 void TreeScopeStyleSheetCollection::analyzeStyleSheetChange(StyleResolverUpdateMode updateMode, const StyleSheetCollection& newCollection, StyleSheetChange& change) argument
135 if (updateMode != AnalyzedStyleUpdate)
H A DStyleEngine.cpp368 bool StyleEngine::shouldUpdateDocumentStyleSheetCollection(StyleResolverUpdateMode updateMode) const
370 return m_documentScopeDirty || updateMode == FullStyleUpdate;
373 bool StyleEngine::shouldUpdateShadowTreeStyleSheetCollection(StyleResolverUpdateMode updateMode) const
375 return !m_dirtyTreeScopes.isEmpty() || updateMode == FullStyleUpdate;
405 void StyleEngine::updateActiveStyleSheets(StyleResolverUpdateMode updateMode) argument
413 if (shouldUpdateDocumentStyleSheetCollection(updateMode))
414 documentStyleSheetCollection()->updateActiveStyleSheets(this, updateMode);
416 if (shouldUpdateShadowTreeStyleSheetCollection(updateMode)) {
417 TreeScopeSet treeScopes = updateMode == FullStyleUpdate ? m_activeTreeScopes : m_dirtyTreeScopes;
425 collection->updateActiveStyleSheets(this, updateMode);
[all...]
H A DDocument.cpp3407 void Document::styleResolverChanged(StyleResolverUpdateMode updateMode) argument
3414 m_styleEngine->resolverChanged(updateMode);
5573 void Document::removedStyleSheet(StyleSheet* sheet, StyleResolverUpdateMode updateMode) argument
5580 styleResolverChanged(updateMode);
5583 void Document::modifiedStyleSheet(StyleSheet* sheet, StyleResolverUpdateMode updateMode) argument
5590 styleResolverChanged(updateMode);

Completed in 84 milliseconds