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

Unified Diff: media/formats/webm/webm_tracks_parser.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « media/formats/webm/webm_stream_parser.h ('k') | media/formats/webm/webm_video_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/webm_tracks_parser.h
diff --git a/media/formats/webm/webm_tracks_parser.h b/media/formats/webm/webm_tracks_parser.h
index 2b9d350a959146c167087ac5ea8241e1da676b62..2801a3e532254a06403bb48b67468c70d1303b1b 100644
--- a/media/formats/webm/webm_tracks_parser.h
+++ b/media/formats/webm/webm_tracks_parser.h
@@ -28,7 +28,7 @@ namespace media {
class MEDIA_EXPORT WebMTracksParser : public WebMParserClient {
public:
explicit WebMTracksParser(const LogCB& log_cb, bool ignore_text_tracks);
- virtual ~WebMTracksParser();
+ ~WebMTracksParser() override;
// Parses a WebM Tracks element in |buf|.
//
@@ -75,12 +75,12 @@ class MEDIA_EXPORT WebMTracksParser : public WebMParserClient {
private:
// WebMParserClient implementation.
- virtual WebMParserClient* OnListStart(int id) override;
- virtual bool OnListEnd(int id) override;
- virtual bool OnUInt(int id, int64 val) override;
- virtual bool OnFloat(int id, double val) override;
- virtual bool OnBinary(int id, const uint8* data, int size) override;
- virtual bool OnString(int id, const std::string& str) override;
+ WebMParserClient* OnListStart(int id) override;
+ bool OnListEnd(int id) override;
+ bool OnUInt(int id, int64 val) override;
+ bool OnFloat(int id, double val) override;
+ bool OnBinary(int id, const uint8* data, int size) override;
+ bool OnString(int id, const std::string& str) override;
int64 track_type_;
int64 track_num_;
« no previous file with comments | « media/formats/webm/webm_stream_parser.h ('k') | media/formats/webm/webm_video_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698