| Index: content/browser/webui/url_data_manager_backend.cc
|
| diff --git a/content/browser/webui/url_data_manager_backend.cc b/content/browser/webui/url_data_manager_backend.cc
|
| index f2ccafb801ba07842225796fe961644ba0e1498b..e75132695f006b2c5dcd82a5ed6a95084a377e11 100644
|
| --- a/content/browser/webui/url_data_manager_backend.cc
|
| +++ b/content/browser/webui/url_data_manager_backend.cc
|
| @@ -83,9 +83,9 @@ bool CheckURLIsValid(const GURL& url) {
|
| // path is the remaining portion after the scheme and hostname.
|
| void URLToRequestPath(const GURL& url, std::string* path) {
|
| const std::string& spec = url.possibly_invalid_spec();
|
| - const url_parse::Parsed& parsed = url.parsed_for_possibly_invalid_spec();
|
| + const url::Parsed& parsed = url.parsed_for_possibly_invalid_spec();
|
| // + 1 to skip the slash at the beginning of the path.
|
| - int offset = parsed.CountCharactersBefore(url_parse::Parsed::PATH, false) + 1;
|
| + int offset = parsed.CountCharactersBefore(url::Parsed::PATH, false) + 1;
|
|
|
| if (offset < static_cast<int>(spec.size()))
|
| path->assign(spec.substr(offset));
|
|
|