| 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 d2e1a60f30b0426f26f395a4880b9da966118d64..6f2141a0c57dd8342e880f6aaae37788af95c66d 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()) {
|
|
|