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..c1443688ba2047aab751011f9ac125ae686f4928 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/mediacapabilities/MediaCapabilities.h |
| @@ -0,0 +1,31 @@ |
| +// 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(); |
|
chcunningham
2017/02/13 19:31:06
#include "third_party/WebKit/Source/platform/heap/
mlamouri (slow - plz ping)
2017/02/13 22:58:25
OK.
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // MediaCapabilities_h |