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

Side by Side Diff: Source/core/inspector/InspectorCSSAgent.h

Issue 323043002: Oilpan: Prepare moving InspectorAgent related classes to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 private: 147 private:
148 class StyleSheetAction; 148 class StyleSheetAction;
149 class SetStyleSheetTextAction; 149 class SetStyleSheetTextAction;
150 class SetPropertyTextAction; 150 class SetPropertyTextAction;
151 class SetRuleSelectorAction; 151 class SetRuleSelectorAction;
152 class AddRuleAction; 152 class AddRuleAction;
153 class EnableResourceClient; 153 class EnableResourceClient;
154 154
155 InspectorCSSAgent(InspectorDOMAgent*, InspectorPageAgent*, InspectorResource Agent*); 155 InspectorCSSAgent(InspectorDOMAgent*, InspectorPageAgent*, InspectorResource Agent*);
156 156
157 typedef HashMap<String, RefPtr<InspectorStyleSheet> > IdToInspectorStyleShee t; 157 typedef WillBeHeapHashMap<String, RefPtrWillBeMember<InspectorStyleSheet> > IdToInspectorStyleSheet;
158 typedef HashMap<String, RefPtr<InspectorStyleSheetForInlineStyle> > IdToInsp ectorStyleSheetForInlineStyle; 158 typedef WillBeHeapHashMap<String, RefPtrWillBeMember<InspectorStyleSheetForI nlineStyle> > IdToInspectorStyleSheetForInlineStyle;
159 typedef HashMap<Node*, RefPtr<InspectorStyleSheetForInlineStyle> > NodeToIns pectorStyleSheet; // bogus "stylesheets" with elements' inline styles 159 typedef WillBeHeapHashMap<Node*, RefPtrWillBeMember<InspectorStyleSheetForIn lineStyle> > NodeToInspectorStyleSheet; // bogus "stylesheets" with elements' in line styles
haraken 2014/06/19 05:49:53 I think this Node* can be a strong pointer. So you
keishi 2014/07/24 02:15:02 Done.
160 typedef HashMap<int, unsigned> NodeIdToForcedPseudoState; 160 typedef HashMap<int, unsigned> NodeIdToForcedPseudoState;
161 161
162 void wasEnabled(PassRefPtr<EnableCallback>); 162 void wasEnabled(PassRefPtr<EnableCallback>);
163 void resetNonPersistentData(); 163 void resetNonPersistentData();
164 InspectorStyleSheetForInlineStyle* asInspectorStyleSheet(Element* element); 164 InspectorStyleSheetForInlineStyle* asInspectorStyleSheet(Element* element);
165 Element* elementForId(ErrorString*, int nodeId); 165 Element* elementForId(ErrorString*, int nodeId);
166 void collectAllStyleSheets(Vector<InspectorStyleSheet*>&); 166 void collectAllStyleSheets(Vector<InspectorStyleSheet*>&);
167 void collectAllDocumentStyleSheets(Document*, WillBeHeapVector<RawPtrWillBeM ember<CSSStyleSheet> >&); 167 void collectAllDocumentStyleSheets(Document*, WillBeHeapVector<RawPtrWillBeM ember<CSSStyleSheet> >&);
168 void collectStyleSheets(CSSStyleSheet*, WillBeHeapVector<RawPtrWillBeMember< CSSStyleSheet> >&); 168 void collectStyleSheets(CSSStyleSheet*, WillBeHeapVector<RawPtrWillBeMember< CSSStyleSheet> >&);
169 169
(...skipping 26 matching lines...) Expand all
196 196
197 void resetPseudoStates(); 197 void resetPseudoStates();
198 198
199 InspectorFrontend::CSS* m_frontend; 199 InspectorFrontend::CSS* m_frontend;
200 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 200 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
201 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 201 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
202 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; 202 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent;
203 203
204 IdToInspectorStyleSheet m_idToInspectorStyleSheet; 204 IdToInspectorStyleSheet m_idToInspectorStyleSheet;
205 IdToInspectorStyleSheetForInlineStyle m_idToInspectorStyleSheetForInlineStyl e; 205 IdToInspectorStyleSheetForInlineStyle m_idToInspectorStyleSheetForInlineStyl e;
206 WillBeHeapHashMap<RawPtrWillBeMember<CSSStyleSheet>, RefPtr<InspectorStyleSh eet> > m_cssStyleSheetToInspectorStyleSheet; 206 WillBeHeapHashMap<RawPtrWillBeMember<CSSStyleSheet>, RefPtrWillBeMember<Insp ectorStyleSheet> > m_cssStyleSheetToInspectorStyleSheet;
207 typedef WillBeHeapHashMap<RawPtrWillBeMember<Document>, OwnPtrWillBeMember<W illBeHeapHashSet<RawPtrWillBeMember<CSSStyleSheet> > > > DocumentStyleSheets; 207 typedef WillBeHeapHashMap<RawPtrWillBeMember<Document>, OwnPtrWillBeMember<W illBeHeapHashSet<RawPtrWillBeMember<CSSStyleSheet> > > > DocumentStyleSheets;
208 DocumentStyleSheets m_documentToCSSStyleSheets; 208 DocumentStyleSheets m_documentToCSSStyleSheets;
209 WillBeHeapHashSet<RawPtrWillBeMember<Document> > m_invalidatedDocuments; 209 WillBeHeapHashSet<RawPtrWillBeMember<Document> > m_invalidatedDocuments;
210 210
211 NodeToInspectorStyleSheet m_nodeToInspectorStyleSheet; 211 NodeToInspectorStyleSheet m_nodeToInspectorStyleSheet;
212 WillBeHeapHashMap<RefPtrWillBeMember<Document>, RefPtr<InspectorStyleSheet> > m_documentToViaInspectorStyleSheet; // "via inspector" stylesheets 212 WillBeHeapHashMap<RefPtrWillBeMember<Document>, RefPtrWillBeMember<Inspector StyleSheet> > m_documentToViaInspectorStyleSheet; // "via inspector" stylesheets
213 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState; 213 NodeIdToForcedPseudoState m_nodeIdToForcedPseudoState;
214 214
215 RefPtrWillBeMember<CSSStyleSheet> m_inspectorUserAgentStyleSheet; 215 RefPtrWillBeMember<CSSStyleSheet> m_inspectorUserAgentStyleSheet;
216 216
217 int m_lastStyleSheetId; 217 int m_lastStyleSheetId;
218 int m_styleSheetsPendingMutation; 218 int m_styleSheetsPendingMutation;
219 bool m_styleDeclarationPendingMutation; 219 bool m_styleDeclarationPendingMutation;
220 bool m_creatingViaInspectorStyleSheet; 220 bool m_creatingViaInspectorStyleSheet;
221 bool m_isSettingStyleSheetText; 221 bool m_isSettingStyleSheetText;
222 222
223 friend class EnableResourceClient; 223 friend class EnableResourceClient;
224 friend class StyleSheetBinder; 224 friend class StyleSheetBinder;
225 }; 225 };
226 226
227 227
228 } // namespace WebCore 228 } // namespace WebCore
229 229
230 #endif // !defined(InspectorCSSAgent_h) 230 #endif // !defined(InspectorCSSAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698