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

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

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 | « no previous file | Source/core/inspector/LayoutEditor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/LayoutEditor.h
diff --git a/Source/core/inspector/LayoutEditor.h b/Source/core/inspector/LayoutEditor.h
index 5d13532141168189f503be0e746c139b38bd031f..ae43c529ea95e4118a2cce9f6066a6a66e99e4c1 100644
--- a/Source/core/inspector/LayoutEditor.h
+++ b/Source/core/inspector/LayoutEditor.h
@@ -18,7 +18,8 @@ namespace blink {
class JSONObject;
class InspectorCSSAgent;
-class LayoutEditor final: public NoBaseWillBeGarbageCollected<LayoutEditor>, public InspectorOverlayHost::LayoutEditorListener {
+class LayoutEditor final: public NoBaseWillBeGarbageCollectedFinalized<LayoutEditor>, public InspectorOverlayHost::LayoutEditorListener {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LayoutEditor);
public:
static PassOwnPtrWillBeRawPtr<LayoutEditor> create(InspectorCSSAgent* cssAgent)
{
@@ -28,11 +29,7 @@ public:
void setNode(Node*);
PassRefPtr<JSONObject> buildJSONInfo() const;
- DEFINE_INLINE_TRACE()
- {
- visitor->trace(m_node);
- visitor->trace(m_cssAgent);
- }
+ DECLARE_VIRTUAL_TRACE();
private:
explicit LayoutEditor(InspectorCSSAgent*);
« no previous file with comments | « no previous file | Source/core/inspector/LayoutEditor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698