| Index: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
|
| diff --git a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
|
| index 130f99b8ff9b429ce96d111593be54251d47759d..bc2ab17b869b6bf9d6679166c149367e8e2f0b78 100644
|
| --- a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
|
| +++ b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
|
| @@ -63,20 +63,18 @@ public:
|
| static bool isTypeSupported(const String& type);
|
|
|
| // EventTarget
|
| - virtual const AtomicString& interfaceName() const override;
|
| - virtual ExecutionContext* executionContext() const override;
|
| + const AtomicString& interfaceName() const override;
|
| + ExecutionContext* executionContext() const override;
|
|
|
| // ActiveDOMObject
|
| - virtual void suspend() override;
|
| - virtual void resume() override;
|
| - virtual void stop() override;
|
| - virtual bool hasPendingActivity() const override { return !m_stopped; }
|
| + void suspend() override;
|
| + void resume() override;
|
| + void stop() override;
|
| + bool hasPendingActivity() const override { return !m_stopped; }
|
|
|
| // WebMediaRecorderHandlerClient
|
| - virtual void writeData(const char* data, size_t length, bool lastInSlice) override;
|
| - virtual void failOutOfMemory(const WebString& message) override;
|
| - virtual void failIllegalStreamModification(const WebString& message) override;
|
| - virtual void failOtherRecordingError(const WebString& message) override;
|
| + void writeData(const char* data, size_t length, bool lastInSlice) override;
|
| + void onError(const WebString& message) override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|