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

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: Created 6 years, 7 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 HashMap<int, NodeToIdMap*> m_idToNodesMap; 253 HashMap<int, NodeToIdMap*> m_idToNodesMap;
254 HashSet<int> m_childrenRequested; 254 HashSet<int> m_childrenRequested;
255 HashMap<int, int> m_cachedChildCount; 255 HashMap<int, int> m_cachedChildCount;
256 int m_lastNodeId; 256 int m_lastNodeId;
257 RefPtr<Document> m_document; 257 RefPtr<Document> m_document;
258 typedef HashMap<String, Vector<RefPtr<Node> > > SearchResults; 258 typedef HashMap<String, Vector<RefPtr<Node> > > SearchResults;
259 SearchResults m_searchResults; 259 SearchResults m_searchResults;
260 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; 260 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask;
261 SearchMode m_searchingForNode; 261 SearchMode m_searchingForNode;
262 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; 262 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig;
263 OwnPtr<InspectorHistory> m_history; 263 OwnPtrWillBePersistent<InspectorHistory> m_history;
264 OwnPtr<DOMEditor> m_domEditor; 264 OwnPtrWillBePersistent<DOMEditor> m_domEditor;
265 bool m_suppressAttributeModifiedEvent; 265 bool m_suppressAttributeModifiedEvent;
266 }; 266 };
267 267
268 268
269 } // namespace WebCore 269 } // namespace WebCore
270 270
271 #endif // !defined(InspectorDOMAgent_h) 271 #endif // !defined(InspectorDOMAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698