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

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

Issue 298873004: Oilpan: Move DOMEditor to the heap (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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 WillBePersistentHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNod esMap; 265 WillBePersistentHeapHashMap<int, RawPtrWillBeMember<NodeToIdMap> > m_idToNod esMap;
266 HashSet<int> m_childrenRequested; 266 HashSet<int> m_childrenRequested;
267 HashMap<int, int> m_cachedChildCount; 267 HashMap<int, int> m_cachedChildCount;
268 int m_lastNodeId; 268 int m_lastNodeId;
269 RefPtrWillBePersistent<Document> m_document; 269 RefPtrWillBePersistent<Document> m_document;
270 typedef WillBePersistentHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMem ber<Node> > > SearchResults; 270 typedef WillBePersistentHeapHashMap<String, WillBeHeapVector<RefPtrWillBeMem ber<Node> > > SearchResults;
271 SearchResults m_searchResults; 271 SearchResults m_searchResults;
272 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; 272 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask;
273 SearchMode m_searchingForNode; 273 SearchMode m_searchingForNode;
274 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; 274 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig;
275 OwnPtr<InspectorHistory> m_history; 275 OwnPtrWillBePersistent<InspectorHistory> m_history;
276 OwnPtr<DOMEditor> m_domEditor; 276 OwnPtrWillBePersistent<DOMEditor> m_domEditor;
277 bool m_suppressAttributeModifiedEvent; 277 bool m_suppressAttributeModifiedEvent;
278 Listener* m_listener; 278 Listener* m_listener;
279 }; 279 };
280 280
281 281
282 } // namespace WebCore 282 } // namespace WebCore
283 283
284 #endif // !defined(InspectorDOMAgent_h) 284 #endif // !defined(InspectorDOMAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698