| Index: chrome/browser/chrome_plugin_host.cc
|
| diff --git a/chrome/browser/chrome_plugin_host.cc b/chrome/browser/chrome_plugin_host.cc
|
| index 3dfedc84202940eeea06f21ed4d907df626661e0..9248036fd3c7df0bdb77485b85cab45bfb954b68 100644
|
| --- a/chrome/browser/chrome_plugin_host.cc
|
| +++ b/chrome/browser/chrome_plugin_host.cc
|
| @@ -56,7 +56,7 @@ using base::TimeDelta;
|
| class PluginRequestInterceptor
|
| : public PluginHelper, public net::URLRequest::Interceptor {
|
| public:
|
| - static URLRequestJob* UninterceptedProtocolHandler(
|
| + static net::URLRequestJob* UninterceptedProtocolHandler(
|
| net::URLRequest* request, const std::string& scheme) {
|
| // This will get called if a plugin failed to intercept a request for a
|
| // protocol it has registered. In that case, we return NULL and the request
|
| @@ -97,7 +97,7 @@ class PluginRequestInterceptor
|
| }
|
|
|
| // net::URLRequest::Interceptor
|
| - virtual URLRequestJob* MaybeIntercept(net::URLRequest* request) {
|
| + virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request) {
|
| // TODO(darin): This DCHECK fails in the unit tests because our interceptor
|
| // is being persisted across unit tests. As a result, each time we get
|
| // poked on a different thread, but never from more than one thread at a
|
|
|