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

Unified Diff: Source/modules/mediasource/SourceBuffer.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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 | « Source/modules/mediasource/MediaSourceRegistry.h ('k') | Source/modules/mediasource/SourceBufferList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/SourceBuffer.h
diff --git a/Source/modules/mediasource/SourceBuffer.h b/Source/modules/mediasource/SourceBuffer.h
index 26e8e67ba955454a989705205a3c0744b4eb70ed..093f7694396ec1990e79ba0443dc64da0a213976 100644
--- a/Source/modules/mediasource/SourceBuffer.h
+++ b/Source/modules/mediasource/SourceBuffer.h
@@ -66,7 +66,7 @@ public:
static const AtomicString& segmentsKeyword();
static const AtomicString& sequenceKeyword();
- virtual ~SourceBuffer();
+ ~SourceBuffer() override;
// SourceBuffer.idl methods
const AtomicString& mode() const { return m_mode; }
@@ -92,17 +92,17 @@ public:
void removedFromMediaSource();
// ActiveDOMObject interface
- virtual bool hasPendingActivity() const override;
- virtual void suspend() override;
- virtual void resume() override;
- virtual void stop() override;
+ bool hasPendingActivity() const override;
+ void suspend() override;
+ void resume() override;
+ void stop() override;
// EventTarget interface
- virtual ExecutionContext* executionContext() const override;
- virtual const AtomicString& interfaceName() const override;
+ ExecutionContext* executionContext() const override;
+ const AtomicString& interfaceName() const override;
// WebSourceBufferClient interface
- virtual void initializationSegmentReceived() override;
+ void initializationSegmentReceived() override;
// Oilpan: eagerly release owned m_webSourceBuffer
EAGERLY_FINALIZE();
@@ -125,10 +125,10 @@ private:
void clearAppendStreamState();
// FileReaderLoaderClient interface
- virtual void didStartLoading() override;
- virtual void didReceiveDataForClient(const char* data, unsigned dataLength) override;
- virtual void didFinishLoading() override;
- virtual void didFail(FileError::ErrorCode) override;
+ void didStartLoading() override;
+ void didReceiveDataForClient(const char* data, unsigned dataLength) override;
+ void didFinishLoading() override;
+ void didFail(FileError::ErrorCode) override;
OwnPtr<WebSourceBuffer> m_webSourceBuffer;
Member<MediaSource> m_source;
« no previous file with comments | « Source/modules/mediasource/MediaSourceRegistry.h ('k') | Source/modules/mediasource/SourceBufferList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698