Index: url/third_party/mozilla/url_parse.cc |
diff --git a/url/third_party/mozilla/url_parse.cc b/url/third_party/mozilla/url_parse.cc |
index 1c1f3dd842f08dbdac0058c030fc3269d9ab8d88..f70f9fb24750148e86d6b6701b38171b1b9b2f2d 100644 |
--- a/url/third_party/mozilla/url_parse.cc |
+++ b/url/third_party/mozilla/url_parse.cc |
@@ -690,7 +690,7 @@ bool DoExtractQueryKeyValue(const CHAR* spec, |
} // namespace |
-Parsed::Parsed() : whitespace_removed(false), inner_parsed_(NULL) {} |
+Parsed::Parsed() : potentially_dangling_markup(false), inner_parsed_(NULL) {} |
Parsed::Parsed(const Parsed& other) |
: scheme(other.scheme), |
@@ -701,7 +701,7 @@ Parsed::Parsed(const Parsed& other) |
path(other.path), |
query(other.query), |
ref(other.ref), |
- whitespace_removed(other.whitespace_removed), |
+ potentially_dangling_markup(other.potentially_dangling_markup), |
inner_parsed_(NULL) { |
if (other.inner_parsed_) |
set_inner_parsed(*other.inner_parsed_); |
@@ -717,7 +717,7 @@ Parsed& Parsed::operator=(const Parsed& other) { |
path = other.path; |
query = other.query; |
ref = other.ref; |
- whitespace_removed = other.whitespace_removed; |
+ potentially_dangling_markup = other.potentially_dangling_markup; |
if (other.inner_parsed_) |
set_inner_parsed(*other.inner_parsed_); |
else |