| Index: chrome/browser/chromeos/media/media_player.h
|
| diff --git a/chrome/browser/chromeos/media/media_player.h b/chrome/browser/chromeos/media/media_player.h
|
| index c7ab976d459391d770d01a9b3c4b11e7e4af8cd9..53e1fb877090d68c06abbd7967941036a815e9b3 100644
|
| --- a/chrome/browser/chromeos/media/media_player.h
|
| +++ b/chrome/browser/chromeos/media/media_player.h
|
| @@ -9,6 +9,7 @@
|
| #include <set>
|
| #include <vector>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/singleton.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| @@ -86,18 +87,20 @@ class MediaPlayer : public content::NotificationObserver,
|
| // Always returns NULL because we don't want to attempt a redirect
|
| // before seeing the detected mime type of the request.
|
| // Implementation of net::URLRequest::Interceptor.
|
| - virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request);
|
| + virtual net::URLRequestJob* MaybeIntercept(
|
| + net::URLRequest* request) OVERRIDE;
|
|
|
| // Determines if the requested document can be viewed by the
|
| // MediaPlayer. If it can, returns a net::URLRequestJob that
|
| // redirects the browser to the view URL.
|
| // Implementation of net::URLRequest::Interceptor.
|
| - virtual net::URLRequestJob* MaybeInterceptResponse(net::URLRequest* request);
|
| + virtual net::URLRequestJob* MaybeInterceptResponse(
|
| + net::URLRequest* request) OVERRIDE;
|
|
|
| // Used to detect when the mediaplayer is closed.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details);
|
| + const content::NotificationDetails& details) OVERRIDE;
|
|
|
| // Getter for the singleton.
|
| static MediaPlayer* GetInstance();
|
|
|