OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StyleResolverUpdateType
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.h
69
enum
StyleResolverUpdateType
{
74
bool updateActiveStyleSheets(DocumentStyleSheetCollection*, StyleResolverUpdateMode,
StyleResolverUpdateType
&);
81
StyleResolverUpdateType
compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets);
84
void analyzeStyleSheetChange(StyleResolverUpdateMode, const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets,
StyleResolverUpdateType
&, bool& requiresFullStyleRecalc);
StyleSheetCollection.cpp
176
StyleSheetCollection::
StyleResolverUpdateType
StyleSheetCollection::compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets)
223
void StyleSheetCollection::analyzeStyleSheetChange(StyleResolverUpdateMode updateMode, const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStyleSheets,
StyleResolverUpdateType
&
styleResolverUpdateType
, bool& requiresFullStyleRecalc)
225
styleResolverUpdateType
= Reconstruct;
238
styleResolverUpdateType
= compareStyleSheets(oldStyleSheets, newStyleSheets, addedSheets);
258
bool StyleSheetCollection::updateActiveStyleSheets(DocumentStyleSheetCollection* collections, StyleResolverUpdateMode updateMode,
StyleResolverUpdateType
&
styleResolverUpdateType
)
268
analyzeStyleSheetChange(updateMode, activeAuthorStyleSheets(), activeCSSStyleSheets,
styleResolverUpdateType
, requiresFullStyleRecalc);
270
if (
styleResolverUpdateType
== Reconstruct) {
275
if (
styleResolverUpdateType
== Reset)
[
all
...]
DocumentStyleSheetCollection.cpp
263
StyleSheetCollection::
StyleResolverUpdateType
styleResolverUpdateType
;
264
bool requiresFullStyleRecalc = m_collectionForDocument.updateActiveStyleSheets(this, updateMode,
styleResolverUpdateType
);
267
if (
styleResolverUpdateType
!= StyleSheetCollection::Reconstruct)
Document.h
174
enum
StyleResolverUpdateType
{ RecalcStyleImmediately, DeferRecalcStyle };
448
void styleResolverChanged(
StyleResolverUpdateType
, StyleResolverUpdateMode = FullStyleUpdate);
452
void removedStyleSheet(StyleSheet*,
StyleResolverUpdateType
type = DeferRecalcStyle) { styleResolverChanged(type); }
453
void addedStyleSheet(StyleSheet*,
StyleResolverUpdateType
type = DeferRecalcStyle) { styleResolverChanged(type); }
454
void modifiedStyleSheet(StyleSheet*,
StyleResolverUpdateType
type = DeferRecalcStyle) { styleResolverChanged(type); }
[
all
...]
Document.cpp
[
all
...]
Completed in 1226 milliseconds