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

Unified Diff: media/formats/webm/webm_info_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_content_encodings_client.h ('k') | media/formats/webm/webm_stream_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/webm_info_parser.h
diff --git a/media/formats/webm/webm_info_parser.h b/media/formats/webm/webm_info_parser.h
index f129f4e143d104e72d452850b7a7b5f0b17fcf64..44ef6b207432b88ee898348051ab52d3093e2626 100644
--- a/media/formats/webm/webm_info_parser.h
+++ b/media/formats/webm/webm_info_parser.h
@@ -16,7 +16,7 @@ namespace media {
class MEDIA_EXPORT WebMInfoParser : public WebMParserClient {
public:
WebMInfoParser();
- virtual ~WebMInfoParser();
+ ~WebMInfoParser() override;
// Parses a WebM Info element in |buf|.
//
@@ -31,12 +31,12 @@ class MEDIA_EXPORT WebMInfoParser : public WebMParserClient {
private:
// WebMParserClient methods
- 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 timecode_scale_;
double duration_;
« no previous file with comments | « media/formats/webm/webm_content_encodings_client.h ('k') | media/formats/webm/webm_stream_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698