Chromium Code Reviews| Index: public/platform/WebMediaRecorderHandler.h |
| diff --git a/public/platform/WebMediaRecorderHandler.h b/public/platform/WebMediaRecorderHandler.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9cae77e37313dee9caf92d4b7499f3d2270a01c2 |
| --- /dev/null |
| +++ b/public/platform/WebMediaRecorderHandler.h |
| @@ -0,0 +1,39 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef WebMediaRecorderHandler_h |
| +#define WebMediaRecorderHandler_h |
| + |
| +#include "WebCommon.h" |
| + |
| +namespace blink { |
| + |
| +class WebMediaRecorderHandlerClient; |
| +class WebMediaStream; |
| +class WebString; |
| + |
| +// Platform interface of a MediaRecorder. |
| +class BLINK_PLATFORM_EXPORT WebMediaRecorderHandler { |
| +public: |
|
Peter Beverloo
2015/09/01 17:17:12
All these methods, aside from the destructor, can
mcasas
2015/09/02 03:10:18
Absolutely. esprehn@ suggested a few PSs ago to pr
|
| + virtual ~WebMediaRecorderHandler() = default; |
| + virtual bool initialize(WebMediaRecorderHandlerClient* client, const WebMediaStream& stream, const WebString& mimeType) { return false; } |
| + virtual bool start() { return false; } |
| + virtual bool start(int timeslice) { return false; } |
| + virtual void stop() {} |
| + virtual void pause() {} |
| + virtual void resume() {} |
| + |
| + // MediaRecorder API canRecordMimeType() is a tristate in which the returned |
| + // value 'probably' means that "the user agent is confident that mimeType |
| + // represents a type that it can record" [1], but a number of reasons might |
| + // prevent a firm answer at this stage, so a boolean is a better option, |
| + // because "Implementors are encouraged to return "maybe" unless the type |
| + // can be confidently established as being supported or not." [1]. |
| + // [1] http://w3c.github.io/mediacapture-record/MediaRecorder.html#methods |
|
Peter Beverloo
2015/09/01 17:17:12
micro nit: https://
mcasas
2015/09/02 03:10:18
Done.
|
| + virtual bool canSupportMimeType(const WebString& mimeType) { return false; } |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // WebMediaRecorderHandler_h |