| Index: third_party/WebKit/Source/core/events/MutationEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/MutationEvent.cpp b/third_party/WebKit/Source/core/events/MutationEvent.cpp
|
| index 80fa0e3b07e2400b7c5d57533a20a59301dbb5a0..dab65d4fa0369fb96cea161c64679595c9742459 100644
|
| --- a/third_party/WebKit/Source/core/events/MutationEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/MutationEvent.cpp
|
| @@ -29,7 +29,7 @@ MutationEvent::MutationEvent()
|
| {
|
| }
|
|
|
| -MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
|
| +MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, RawPtr<Node> relatedNode,
|
| const String& prevValue, const String& newValue,
|
| const String& attrName, unsigned short attrChange)
|
| : Event(type, canBubble, cancelable)
|
| @@ -45,7 +45,7 @@ MutationEvent::~MutationEvent()
|
| {
|
| }
|
|
|
| -void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode,
|
| +void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, RawPtr<Node> relatedNode,
|
| const String& prevValue, const String& newValue,
|
| const String& attrName, unsigned short attrChange)
|
| {
|
|
|