OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 InspectorResourceAgent* m_resourceAgent; | 200 InspectorResourceAgent* m_resourceAgent; |
201 | 201 |
202 IdToInspectorStyleSheet m_idToInspectorStyleSheet; | 202 IdToInspectorStyleSheet m_idToInspectorStyleSheet; |
203 IdToInspectorStyleSheetForInlineStyle m_idToInspectorStyleSheetForInlineStyl
e; | 203 IdToInspectorStyleSheetForInlineStyle m_idToInspectorStyleSheetForInlineStyl
e; |
204 HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > m_cssStyleSheetToInspe
ctorStyleSheet; | 204 HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > m_cssStyleSheetToInspe
ctorStyleSheet; |
205 typedef HashMap<Document*, OwnPtr<HashSet<CSSStyleSheet*> > > DocumentStyleS
heets; | 205 typedef HashMap<Document*, OwnPtr<HashSet<CSSStyleSheet*> > > DocumentStyleS
heets; |
206 DocumentStyleSheets m_documentToCSSStyleSheets; | 206 DocumentStyleSheets m_documentToCSSStyleSheets; |
207 HashSet<Document*> m_invalidatedDocuments; | 207 HashSet<Document*> m_invalidatedDocuments; |
208 | 208 |
209 NodeToInspectorStyleSheet m_nodeToInspectorStyleSheet; | 209 NodeToInspectorStyleSheet m_nodeToInspectorStyleSheet; |
210 HashMap<RefPtr<Document>, RefPtr<InspectorStyleSheet> > m_documentToViaInspe
ctorStyleSheet; // "via inspector" stylesheets | 210 WillBePersistentHeapHashMap<RefPtrWillBeMember<Document>, RefPtr<InspectorSt
yleSheet> > m_documentToViaInspectorStyleSheet; // "via inspector" stylesheets |
211 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState; | 211 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState; |
212 | 212 |
213 RefPtrWillBePersistent<CSSStyleSheet> m_inspectorUserAgentStyleSheet; | 213 RefPtrWillBePersistent<CSSStyleSheet> m_inspectorUserAgentStyleSheet; |
214 | 214 |
215 int m_lastStyleSheetId; | 215 int m_lastStyleSheetId; |
216 int m_styleSheetsPendingMutation; | 216 int m_styleSheetsPendingMutation; |
217 bool m_styleDeclarationPendingMutation; | 217 bool m_styleDeclarationPendingMutation; |
218 bool m_creatingViaInspectorStyleSheet; | 218 bool m_creatingViaInspectorStyleSheet; |
219 bool m_isSettingStyleSheetText; | 219 bool m_isSettingStyleSheetText; |
220 | 220 |
221 friend class EnableResourceClient; | 221 friend class EnableResourceClient; |
222 friend class StyleSheetBinder; | 222 friend class StyleSheetBinder; |
223 }; | 223 }; |
224 | 224 |
225 | 225 |
226 } // namespace WebCore | 226 } // namespace WebCore |
227 | 227 |
228 #endif // !defined(InspectorCSSAgent_h) | 228 #endif // !defined(InspectorCSSAgent_h) |
OLD | NEW |