From ab0a50979b9eb4dfa3320eff7e187e41efedf7a9 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Fri, 8 Aug 2014 14:30:41 +0200 Subject: Update Chromium to beta version 37.0.2062.68 Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi --- .../Source/modules/mediastream/RTCIceCandidateEvent.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'chromium/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h') diff --git a/chromium/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h b/chromium/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h index be7eab7d5c3..99280464572 100644 --- a/chromium/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h +++ b/chromium/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h @@ -25,28 +25,30 @@ #ifndef RTCIceCandidateEvent_h #define RTCIceCandidateEvent_h -#include "core/events/Event.h" +#include "modules/EventModules.h" #include "wtf/text/AtomicString.h" namespace WebCore { class RTCIceCandidate; -class RTCIceCandidateEvent : public Event { +class RTCIceCandidateEvent FINAL : public Event { public: virtual ~RTCIceCandidateEvent(); - static PassRefPtr create(); - static PassRefPtr create(bool canBubble, bool cancelable, PassRefPtr); + static PassRefPtrWillBeRawPtr create(); + static PassRefPtrWillBeRawPtr create(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr); RTCIceCandidate* candidate() const; - virtual const AtomicString& interfaceName() const; + virtual const AtomicString& interfaceName() const OVERRIDE; + + virtual void trace(Visitor*) OVERRIDE; private: RTCIceCandidateEvent(); - RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr); + RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr); - RefPtr m_candidate; + RefPtrWillBeMember m_candidate; }; } // namespace WebCore -- cgit v1.2.3