Index: url/gurl.h |
diff --git a/url/gurl.h b/url/gurl.h |
index 7e71aa9964385480fceecf4bf4a880bcdb0163e0..25b77766d25c028ab8938f567ffbc6e224bbcbe1 100644 |
--- a/url/gurl.h |
+++ b/url/gurl.h |
@@ -226,6 +226,11 @@ class URL_EXPORT GURL { |
(SchemeIsFileSystem() && inner_url() && inner_url()->SchemeIsSecure()); |
} |
+ // The "content" or the URL is everything after the scheme (skipping the |
hashimoto
2013/10/21 03:49:06
nit: s/or/of/?
Kristian Monsen
2013/10/21 21:05:43
Done.
|
+ // scheme delimiting colon). It is an error to get the origin of an invalid |
+ // URL. The result will be an empty string. |
+ std::string GetContent() const; |
+ |
// Returns true if the hostname is an IP address. Note: this function isn't |
// as cheap as a simple getter because it re-parses the hostname to verify. |
// This currently identifies only IPv4 addresses (bug 822685). |