| Index: url/gurl.h
|
| diff --git a/url/gurl.h b/url/gurl.h
|
| index 7e71aa9964385480fceecf4bf4a880bcdb0163e0..1f847dfdd1d74af2b3f45f53de441074186d001b 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" of the URL is everything after the scheme (skipping the
|
| + // 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).
|
|
|