| Index: content/browser/debugger/devtools_http_protocol_handler.cc
|
| diff --git a/content/browser/debugger/devtools_http_protocol_handler.cc b/content/browser/debugger/devtools_http_protocol_handler.cc
|
| index 3e78e4ba95c3a66b6c154040db47f4d3749f19a6..dc248999c5f106eebce6caca04cab18be6d53f10 100644
|
| --- a/content/browser/debugger/devtools_http_protocol_handler.cc
|
| +++ b/content/browser/debugger/devtools_http_protocol_handler.cc
|
| @@ -138,7 +138,7 @@ void DevToolsHttpProtocolHandler::OnHttpRequest(
|
| }
|
|
|
| // Proxy static files from chrome-devtools://devtools/*.
|
| - if (!Profile::GetDefaultRequestContext()) {
|
| + if (!Profile::Deprecated::GetDefaultRequestContext()) {
|
| server_->Send404(connection_id);
|
| return;
|
| }
|
| @@ -167,7 +167,7 @@ void DevToolsHttpProtocolHandler::OnHttpRequest(
|
| DevToolsUI::RegisterDevToolsDataSource();
|
| Bind(request, connection_id);
|
| request->set_context(
|
| - Profile::GetDefaultRequestContext()->GetURLRequestContext());
|
| + Profile::Deprecated::GetDefaultRequestContext()->GetURLRequestContext());
|
| request->Start();
|
| }
|
|
|
|
|