Index: Source/core/editing/RemoveFormatCommand.cpp |
diff --git a/Source/core/editing/RemoveFormatCommand.cpp b/Source/core/editing/RemoveFormatCommand.cpp |
index 23c660ec7e1940ae0cc6f929dcee669534eba2a8..d14658f105095a9ce028c9bc6118c3fa05194f63 100644 |
--- a/Source/core/editing/RemoveFormatCommand.cpp |
+++ b/Source/core/editing/RemoveFormatCommand.cpp |
@@ -87,7 +87,7 @@ void RemoveFormatCommand::doApply() |
// Get the default style for this editable root, it's the style that we'll give the |
// content that we're operating on. |
Node* root = frame->selection().rootEditableElement(); |
- RefPtr<EditingStyle> defaultStyle = EditingStyle::create(root); |
+ RefPtrWillBeRawPtr<EditingStyle> defaultStyle = EditingStyle::create(root); |
// We want to remove everything but transparent background. |
// FIXME: We shouldn't access style(). |