| Index: Source/core/inspector/InspectorCSSAgent.h
|
| diff --git a/Source/core/inspector/InspectorCSSAgent.h b/Source/core/inspector/InspectorCSSAgent.h
|
| index 176342981981ccaed51d27a4ae271f51aa18a478..5ec0fd1a94fbd176bec4318de7a07709be7f7bd2 100644
|
| --- a/Source/core/inspector/InspectorCSSAgent.h
|
| +++ b/Source/core/inspector/InspectorCSSAgent.h
|
| @@ -108,6 +108,7 @@ public:
|
| virtual void clearFrontend() OVERRIDE;
|
| virtual void discardAgent() OVERRIDE;
|
| virtual void restore() OVERRIDE;
|
| + virtual void flushPendingFrontendMessages() OVERRIDE;
|
| virtual void enable(ErrorString*, PassRefPtr<EnableCallback>) OVERRIDE;
|
| virtual void disable(ErrorString*) OVERRIDE;
|
| void reset();
|
| @@ -196,6 +197,7 @@ private:
|
| HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > m_cssStyleSheetToInspectorStyleSheet;
|
| typedef HashMap<Document*, OwnPtr<HashSet<CSSStyleSheet*> > > DocumentStyleSheets;
|
| DocumentStyleSheets m_documentToCSSStyleSheets;
|
| + HashSet<Document*> m_invalidatedDocuments;
|
|
|
| NodeToInspectorStyleSheet m_nodeToInspectorStyleSheet;
|
| HashMap<RefPtr<Document>, RefPtr<InspectorStyleSheet> > m_documentToViaInspectorStyleSheet; // "via inspector" stylesheets
|
|
|