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

Unified Diff: Source/platform/mediastream/MediaStreamComponent.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/platform/mac/ScrollAnimatorMac.h ('k') | Source/platform/plugins/PluginListBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/mediastream/MediaStreamComponent.h
diff --git a/Source/platform/mediastream/MediaStreamComponent.h b/Source/platform/mediastream/MediaStreamComponent.h
index dde28ce65e8269c30b3cba4580969ff067feb186..b084347672a6724531862c4b4782b73aece04a93 100644
--- a/Source/platform/mediastream/MediaStreamComponent.h
+++ b/Source/platform/mediastream/MediaStreamComponent.h
@@ -82,7 +82,7 @@ private:
// AudioSourceProviderImpl wraps a WebAudioSourceProvider::provideInput()
// calls into chromium to get a rendered audio stream.
- class AudioSourceProviderImpl : public AudioSourceProvider {
+ class AudioSourceProviderImpl FINAL: public AudioSourceProvider {
public:
AudioSourceProviderImpl()
: m_webAudioSourceProvider(0)
@@ -95,7 +95,7 @@ private:
void wrap(blink::WebAudioSourceProvider*);
// WebCore::AudioSourceProvider
- virtual void provideInput(WebCore::AudioBus*, size_t framesToProcess);
+ virtual void provideInput(WebCore::AudioBus*, size_t framesToProcess) OVERRIDE;
private:
blink::WebAudioSourceProvider* m_webAudioSourceProvider;
« no previous file with comments | « Source/platform/mac/ScrollAnimatorMac.h ('k') | Source/platform/plugins/PluginListBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698