| Index: chrome/browser/dom_ui/mediaplayer_ui.h
|
| diff --git a/chrome/browser/dom_ui/mediaplayer_ui.h b/chrome/browser/dom_ui/mediaplayer_ui.h
|
| index 5c5b4bcb381df2e4f2ee00bc4d322e8ed95b7a89..8a34d7c7f442b55f9e8ad42169603b37b3103d30 100644
|
| --- a/chrome/browser/dom_ui/mediaplayer_ui.h
|
| +++ b/chrome/browser/dom_ui/mediaplayer_ui.h
|
| @@ -24,7 +24,7 @@ class MediaplayerHandler;
|
| class Browser;
|
|
|
| class MediaPlayer : public NotificationObserver,
|
| - public URLRequest::Interceptor {
|
| + public net::URLRequest::Interceptor {
|
| public:
|
| ~MediaPlayer();
|
|
|
| @@ -74,13 +74,13 @@ class MediaPlayer : public NotificationObserver,
|
|
|
| // Always returns NULL because we don't want to attempt a redirect
|
| // before seeing the detected mime type of the request.
|
| - // Implementation of URLRequest::Interceptor.
|
| + // Implementation of net::URLRequest::Interceptor.
|
| virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request);
|
|
|
| // Determines if the requested document can be viewed by the
|
| // MediaPlayer. If it can, returns a URLRequestJob that
|
| // redirects the browser to the view URL.
|
| - // Implementation of URLRequest::Interceptor.
|
| + // Implementation of net::URLRequest::Interceptor.
|
| virtual net::URLRequestJob* MaybeInterceptResponse(net::URLRequest* request);
|
|
|
| // Used to detect when the mediaplayer is closed.
|
|
|