Index: third_party/WebKit/Source/platform/weborigin/KURL.h |
diff --git a/third_party/WebKit/Source/platform/weborigin/KURL.h b/third_party/WebKit/Source/platform/weborigin/KURL.h |
index 91c78515fdc24fb9fc0ab12cdea232dad75327b8..e441f9e5f5d5ed34382b72d2bee95797734fae15 100644 |
--- a/third_party/WebKit/Source/platform/weborigin/KURL.h |
+++ b/third_party/WebKit/Source/platform/weborigin/KURL.h |
@@ -196,24 +196,17 @@ |
const String& relative, |
const WTF::TextEncoding* queryEncoding); |
- StringView componentStringView(const url::Component&) const; |
String componentString(const url::Component&) const; |
- StringView stringViewForInvalidComponent() const; |
+ String stringForInvalidComponent() const; |
template <typename CHAR> |
void replaceComponents(const url::Replacements<CHAR>&); |
void initInnerURL(); |
- void initProtocolMetadata(); |
+ void initProtocolIsInHTTPFamily(); |
bool m_isValid; |
bool m_protocolIsInHTTPFamily; |
- |
- // Keep a separate string for the protocol to avoid copious copies for |
- // protocol(). Normally this will be Atomic, except when constructed via |
- // KURL::copy(), which is deep. |
- String m_protocol; |
- |
url::Parsed m_parsed; |
String m_string; |
std::unique_ptr<KURL> m_innerURL; |