Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(959)

Unified Diff: content/browser/media/android/media_resource_getter_impl.h

Issue 884103004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/media/android/media_resource_getter_impl.h
diff --git a/content/browser/media/android/media_resource_getter_impl.h b/content/browser/media/android/media_resource_getter_impl.h
index 4f0d2e81af84a3a2e8a81337ebb22c4459df98e2..9a55fcb7c2c5f7b3389b8d75965d29d70a45cf83 100644
--- a/content/browser/media/android/media_resource_getter_impl.h
+++ b/content/browser/media/android/media_resource_getter_impl.h
@@ -40,30 +40,25 @@ class MediaResourceGetterImpl : public media::MediaResourceGetter {
storage::FileSystemContext* file_system_context,
int render_process_id,
int render_frame_id);
- virtual ~MediaResourceGetterImpl();
+ ~MediaResourceGetterImpl() override;
// media::MediaResourceGetter implementation.
// Must be called on the UI thread.
- virtual void GetAuthCredentials(
- const GURL& url,
- const GetAuthCredentialsCB& callback) override;
- virtual void GetCookies(
- const GURL& url,
- const GURL& first_party_for_cookies,
- const GetCookieCB& callback) override;
- virtual void GetPlatformPathFromURL(
- const GURL& url,
- const GetPlatformPathCB& callback) override;
- virtual void ExtractMediaMetadata(
- const std::string& url,
- const std::string& cookies,
- const std::string& user_agent,
- const ExtractMediaMetadataCB& callback) override;
- virtual void ExtractMediaMetadata(
- const int fd,
- const int64 offset,
- const int64 size,
- const ExtractMediaMetadataCB& callback) override;
+ void GetAuthCredentials(const GURL& url,
+ const GetAuthCredentialsCB& callback) override;
+ void GetCookies(const GURL& url,
+ const GURL& first_party_for_cookies,
+ const GetCookieCB& callback) override;
+ void GetPlatformPathFromURL(const GURL& url,
+ const GetPlatformPathCB& callback) override;
+ void ExtractMediaMetadata(const std::string& url,
+ const std::string& cookies,
+ const std::string& user_agent,
+ const ExtractMediaMetadataCB& callback) override;
+ void ExtractMediaMetadata(const int fd,
+ const int64 offset,
+ const int64 size,
+ const ExtractMediaMetadataCB& callback) override;
static bool RegisterMediaResourceGetter(JNIEnv* env);
« no previous file with comments | « content/browser/media/android/browser_media_player_manager.h ('k') | content/browser/media/encrypted_media_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698