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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h

Issue 1540303003: MediaRecorder: update to spec (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reverted DEPS to master Created 4 years, 12 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
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();

Powered by Google App Engine
This is Rietveld 408576698