Chromium Code Reviews| Index: url/url_util.h |
| diff --git a/url/url_util.h b/url/url_util.h |
| index a4b74b13e5db1fe6241b4a70ce747d81fd52e67f..65a347efda4eee961d592b958e6fdb6f10238fc4 100644 |
| --- a/url/url_util.h |
| +++ b/url/url_util.h |
| @@ -10,6 +10,7 @@ |
| #include "base/strings/string16.h" |
| #include "base/strings/string_piece.h" |
| +#include "url/gurl.h" |
| #include "url/third_party/mozilla/url_parse.h" |
| #include "url/url_canon.h" |
| #include "url/url_constants.h" |
| @@ -152,6 +153,9 @@ URL_EXPORT bool IsReferrerScheme(const char* spec, const Component& scheme); |
| URL_EXPORT bool GetStandardSchemeType(const char* spec, |
| const Component& scheme, |
| SchemeType* type); |
| +// Check whether the url is of the form about:blank, about:blank?foo or |
|
Charlie Reis
2017/01/20 20:31:02
nit: Add blank line before, since this isn't direc
clamy
2017/01/23 12:26:27
Done.
|
| +// about:blank/#foo. |
| +URL_EXPORT bool IsAboutBlank(const GURL& url); |
| // Hosts ---------------------------------------------------------------------- |