| Index: chrome/browser/chromeos/login/registration_screen.cc
|
| diff --git a/chrome/browser/chromeos/login/registration_screen.cc b/chrome/browser/chromeos/login/registration_screen.cc
|
| index 913aadaa9dedf602eae0f61e80de8126fe337b88..c156159a00452c74389eaa6e09d02b0c6705f8a1 100644
|
| --- a/chrome/browser/chromeos/login/registration_screen.cc
|
| +++ b/chrome/browser/chromeos/login/registration_screen.cc
|
| @@ -138,10 +138,12 @@ void RegistrationScreen::CloseScreen(ScreenObserver::ExitCodes code) {
|
| }
|
|
|
| // static
|
| -net::URLRequestJob* RegistrationScreen::Factory(net::URLRequest* request,
|
| - const std::string& scheme) {
|
| +net::URLRequestJob* RegistrationScreen::Factory(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const std::string& scheme) {
|
| VLOG(1) << "Handling url: " << request->url().spec().c_str();
|
| - return new net::URLRequestAboutJob(request);
|
| + return new net::URLRequestAboutJob(request, network_delegate);
|
| }
|
|
|
| } // namespace chromeos
|
|
|