| Index: Source/core/editing/CompositeEditCommand.cpp
|
| diff --git a/Source/core/editing/CompositeEditCommand.cpp b/Source/core/editing/CompositeEditCommand.cpp
|
| index 08794dee7ec89d4cd8f7a9084e24fb8901516b8b..7fb51271251d81cfac1a7c70c985bc24f203f023 100644
|
| --- a/Source/core/editing/CompositeEditCommand.cpp
|
| +++ b/Source/core/editing/CompositeEditCommand.cpp
|
| @@ -103,7 +103,7 @@ bool EditCommandComposition::belongsTo(const LocalFrame& frame) const
|
| void EditCommandComposition::unapply()
|
| {
|
| ASSERT(m_document);
|
| - RefPtr<LocalFrame> frame = m_document->frame();
|
| + RefPtrWillBeRawPtr<LocalFrame> frame = m_document->frame();
|
| ASSERT(frame);
|
|
|
| // Changes to the document may have been made since the last editing operation that require a layout, as in <rdar://problem/5658603>.
|
| @@ -123,7 +123,7 @@ void EditCommandComposition::unapply()
|
| void EditCommandComposition::reapply()
|
| {
|
| ASSERT(m_document);
|
| - RefPtr<LocalFrame> frame = m_document->frame();
|
| + RefPtrWillBeRawPtr<LocalFrame> frame = m_document->frame();
|
| ASSERT(frame);
|
|
|
| // Changes to the document may have been made since the last editing operation that require a layout, as in <rdar://problem/5658603>.
|
|
|