| Index: Source/core/editing/MarkupAccumulator.h
|
| diff --git a/Source/core/editing/MarkupAccumulator.h b/Source/core/editing/MarkupAccumulator.h
|
| index 0131ad4c6cd7cc5898a8656f26115f0adadafc27..11630f843065f146eb2b0c6f16d5c128348894b5 100644
|
| --- a/Source/core/editing/MarkupAccumulator.h
|
| +++ b/Source/core/editing/MarkupAccumulator.h
|
| @@ -57,7 +57,7 @@ enum EntityMask {
|
| EntityMaskInHTMLAttributeValue = EntityAmp | EntityQuot | EntityNbsp,
|
| };
|
|
|
| -enum SerializationType {
|
| +enum class SerializationType {
|
| AsOwnerDocument,
|
| ForcedXML
|
| };
|
| @@ -70,7 +70,7 @@ public:
|
| static void appendCharactersReplacingEntities(StringBuilder&, const String&, unsigned, unsigned, EntityMask);
|
| static size_t totalLength(const Vector<String>&);
|
|
|
| - MarkupAccumulator(EAbsoluteURLs, SerializationType = AsOwnerDocument);
|
| + MarkupAccumulator(EAbsoluteURLs, SerializationType = SerializationType::AsOwnerDocument);
|
| virtual ~MarkupAccumulator();
|
|
|
| void appendString(const String&);
|
|
|