Chromium Code Reviews| Index: third_party/WebKit/Source/modules/mediacapabilities/MediaCapabilities.h |
| diff --git a/third_party/WebKit/Source/modules/mediacapabilities/MediaCapabilities.h b/third_party/WebKit/Source/modules/mediacapabilities/MediaCapabilities.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ec1b9eac0f46e1eaf212c9078d2183af11066cb5 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/mediacapabilities/MediaCapabilities.h |
| @@ -0,0 +1,33 @@ |
| +// Copyright 2017 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 MediaCapabilities_h |
| +#define MediaCapabilities_h |
| + |
| +#include "bindings/core/v8/ScriptWrappable.h" |
| + |
| +namespace blink { |
| + |
| +class MediaConfiguration; |
| +class ScriptPromise; |
| +class ScriptState; |
| + |
| +class MediaCapabilities final |
| + : public GarbageCollectedFinalized<MediaCapabilities>, |
| + public ScriptWrappable { |
| + DEFINE_WRAPPERTYPEINFO(); |
| + |
| + public: |
| + MediaCapabilities(); |
| + |
| + ScriptPromise query(ScriptState*, const MediaConfiguration&); |
| + |
| + DECLARE_VIRTUAL_TRACE(); |
| + |
| + private: |
|
haraken
2017/02/13 11:23:31
Remove private.
mlamouri (slow - plz ping)
2017/02/13 11:33:29
Oups :)
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // MediaCapabilities_h |