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

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

Issue 315213006: Oilpan: Remove RefPtrs to Node and its subclasses in core/inspector/ with Oilpan transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698