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

Unified Diff: Source/core/inspector/InspectorOverlay.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 side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorOverlay.h
diff --git a/Source/core/inspector/InspectorOverlay.h b/Source/core/inspector/InspectorOverlay.h
index 49f989c6d8acd22bae2854c3db0e1d160f0961d4..ab300dad1c5dee329cb9fe5b83d01e26878bfcec 100644
--- a/Source/core/inspector/InspectorOverlay.h
+++ b/Source/core/inspector/InspectorOverlay.h
@@ -167,8 +167,8 @@ private:
InspectorClient* m_client;
String m_pausedInDebuggerMessage;
bool m_inspectModeEnabled;
- RefPtr<Node> m_highlightNode;
- RefPtr<Node> m_eventTargetNode;
+ RefPtrWillBePersistent<Node> m_highlightNode;
+ RefPtrWillBePersistent<Node> m_eventTargetNode;
HighlightConfig m_nodeHighlightConfig;
OwnPtr<FloatQuad> m_highlightQuad;
OwnPtrWillBePersistent<Page> m_overlayPage;

Powered by Google App Engine
This is Rietveld 408576698