| Index: Source/core/editing/EditorCommand.cpp
|
| diff --git a/Source/core/editing/EditorCommand.cpp b/Source/core/editing/EditorCommand.cpp
|
| index e1b207bb424e434ddefc56d075513695998711a2..0fb4e364f0d2e6b1f24b2c0b3e20edea922273aa 100644
|
| --- a/Source/core/editing/EditorCommand.cpp
|
| +++ b/Source/core/editing/EditorCommand.cpp
|
| @@ -1049,7 +1049,7 @@
|
|
|
| static bool executeStrikethrough(Frame& frame, Event*, EditorCommandSource source, const String&)
|
| {
|
| - RefPtrWillBeRawPtr<CSSPrimitiveValue> lineThrough = CSSPrimitiveValue::createIdentifier(CSSValueLineThrough);
|
| + RefPtr<CSSPrimitiveValue> lineThrough = CSSPrimitiveValue::createIdentifier(CSSValueLineThrough);
|
| return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPropertyWebkitTextDecorationsInEffect, lineThrough.get());
|
| }
|
|
|
| @@ -1104,7 +1104,7 @@
|
|
|
| static bool executeUnderline(Frame& frame, Event*, EditorCommandSource source, const String&)
|
| {
|
| - RefPtrWillBeRawPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CSSValueUnderline);
|
| + RefPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CSSValueUnderline);
|
| return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPropertyWebkitTextDecorationsInEffect, underline.get());
|
| }
|
|
|
|
|