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

Side by Side Diff: Source/modules/serviceworkers/ServiceWorkerMessageEvent.cpp

Issue 1240223003: Oilpan: remove unnecessary ENABLE(OILPAN) protections of trace() calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "modules/serviceworkers/ServiceWorkerMessageEvent.h" 6 #include "modules/serviceworkers/ServiceWorkerMessageEvent.h"
7 7
8 namespace blink { 8 namespace blink {
9 9
10 ServiceWorkerMessageEvent::ServiceWorkerMessageEvent() 10 ServiceWorkerMessageEvent::ServiceWorkerMessageEvent()
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 const AtomicString& ServiceWorkerMessageEvent::interfaceName() const 73 const AtomicString& ServiceWorkerMessageEvent::interfaceName() const
74 { 74 {
75 return EventNames::ServiceWorkerMessageEvent; 75 return EventNames::ServiceWorkerMessageEvent;
76 } 76 }
77 77
78 DEFINE_TRACE(ServiceWorkerMessageEvent) 78 DEFINE_TRACE(ServiceWorkerMessageEvent)
79 { 79 {
80 visitor->trace(m_sourceAsServiceWorker); 80 visitor->trace(m_sourceAsServiceWorker);
81 visitor->trace(m_sourceAsMessagePort); 81 visitor->trace(m_sourceAsMessagePort);
82 #if ENABLE(OILPAN)
83 visitor->trace(m_ports); 82 visitor->trace(m_ports);
84 #endif
85 Event::trace(visitor); 83 Event::trace(visitor);
86 } 84 }
87 85
88 } // namespace blink 86 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698