Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp

Issue 2810073002: Blink Rename follow-up: URLs --big-rename--> _ur_ls --this-fix--> _urls. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698