| Index: third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| index ff5604a8e7c1823e54b43689af7b03d38fc9106f..3ee85d8db6416030c8273ec07faff23046ef2441 100644
|
| --- a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| @@ -123,14 +123,14 @@ void MarkupFormatter::AppendCharactersReplacingEntities(
|
|
|
| MarkupFormatter::MarkupFormatter(EAbsoluteURLs resolve_urls_method,
|
| SerializationType serialization_type)
|
| - : resolve_ur_ls_method_(resolve_urls_method),
|
| + : resolve_urls_method_(resolve_urls_method),
|
| serialization_type_(serialization_type) {}
|
|
|
| MarkupFormatter::~MarkupFormatter() {}
|
|
|
| String MarkupFormatter::ResolveURLIfNeeded(const Element& element,
|
| const String& url_string) const {
|
| - switch (resolve_ur_ls_method_) {
|
| + switch (resolve_urls_method_) {
|
| case kResolveAllURLs:
|
| return element.GetDocument().CompleteURL(url_string).GetString();
|
|
|
|
|