| Index: third_party/WebKit/Source/core/dom/CharacterData.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/CharacterData.cpp b/third_party/WebKit/Source/core/dom/CharacterData.cpp
|
| index b54428dbaf969c1696f6c3d610d48382d421bac7..ab4651c6085022b70fc9500f3c60f29b62a2c1c2 100644
|
| --- a/third_party/WebKit/Source/core/dom/CharacterData.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/CharacterData.cpp
|
| @@ -46,7 +46,7 @@ void CharacterData::setData(const String& data)
|
| if (m_data == nonNullData)
|
| return;
|
|
|
| - RefPtrWillBeRawPtr<CharacterData> protect(this);
|
| + RawPtr<CharacterData> protect(this);
|
|
|
| unsigned oldLength = length();
|
|
|
| @@ -182,7 +182,7 @@ void CharacterData::setDataAndUpdate(const String& newData, unsigned offsetOfRep
|
|
|
| void CharacterData::didModifyData(const String& oldData, UpdateSource source)
|
| {
|
| - if (OwnPtrWillBeRawPtr<MutationObserverInterestGroup> mutationRecipients = MutationObserverInterestGroup::createForCharacterDataMutation(*this))
|
| + if (RawPtr<MutationObserverInterestGroup> mutationRecipients = MutationObserverInterestGroup::createForCharacterDataMutation(*this))
|
| mutationRecipients->enqueueMutationRecord(MutationRecord::createCharacterData(this, oldData));
|
|
|
| if (parentNode()) {
|
|
|