| Index: chrome/browser/extensions/extension_protocols.cc
|
| diff --git a/chrome/browser/extensions/extension_protocols.cc b/chrome/browser/extensions/extension_protocols.cc
|
| index cc2041390f9b10459f395bee86d193ea4d684bc8..47adedd1e3d26617bac04b87fac60b175568ccf2 100644
|
| --- a/chrome/browser/extensions/extension_protocols.cc
|
| +++ b/chrome/browser/extensions/extension_protocols.cc
|
| @@ -144,8 +144,9 @@ bool AllowExtensionResourceLoad(net::URLRequest* request,
|
|
|
| // Factory registered with net::URLRequest to create URLRequestJobs for
|
| // extension:// URLs.
|
| -static URLRequestJob* CreateExtensionURLRequestJob(net::URLRequest* request,
|
| - const std::string& scheme) {
|
| +static net::URLRequestJob* CreateExtensionURLRequestJob(
|
| + net::URLRequest* request,
|
| + const std::string& scheme) {
|
| ChromeURLRequestContext* context =
|
| static_cast<ChromeURLRequestContext*>(request->context());
|
|
|
| @@ -203,8 +204,9 @@ static URLRequestJob* CreateExtensionURLRequestJob(net::URLRequest* request,
|
|
|
| // Factory registered with net::URLRequest to create URLRequestJobs for
|
| // chrome-user-script:/ URLs.
|
| -static URLRequestJob* CreateUserScriptURLRequestJob(net::URLRequest* request,
|
| - const std::string& scheme) {
|
| +static net::URLRequestJob* CreateUserScriptURLRequestJob(
|
| + net::URLRequest* request,
|
| + const std::string& scheme) {
|
| ChromeURLRequestContext* context =
|
| static_cast<ChromeURLRequestContext*>(request->context());
|
|
|
|
|