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

Unified Diff: Source/core/inspector/LayoutEditor.cpp

Issue 1207333002: Oilpan: fix build after r197830. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove redundant upcall Created 5 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
« no previous file with comments | « Source/core/inspector/LayoutEditor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/LayoutEditor.cpp
diff --git a/Source/core/inspector/LayoutEditor.cpp b/Source/core/inspector/LayoutEditor.cpp
index b5da852867ac6192e63994074d48cba2693f6710..49ad5c28db9bf9d9c6c66fbe9d433e3a27375a76 100644
--- a/Source/core/inspector/LayoutEditor.cpp
+++ b/Source/core/inspector/LayoutEditor.cpp
@@ -59,6 +59,12 @@ LayoutEditor::LayoutEditor(InspectorCSSAgent* cssAgent)
{
}
+DEFINE_TRACE(LayoutEditor)
+{
+ visitor->trace(m_node);
+ visitor->trace(m_cssAgent);
+}
+
void LayoutEditor::setNode(Node* node)
{
m_node = node;
« no previous file with comments | « Source/core/inspector/LayoutEditor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698