blob: f6e515b2e1e761e03134a171fe0732cb0ad8c3a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 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 MediaSessionError_h
#define MediaSessionError_h
#include "platform/heap/Handle.h"
#include <v8/include/v8.h>
namespace blink {
class DOMException;
class ScriptPromiseResolver;
enum class WebMediaSessionError;
class MediaSessionError {
STATIC_ONLY(MediaSessionError);
public:
// For CallbackPromiseAdapter
using WebType = const WebMediaSessionError&;
static DOMException* take(ScriptPromiseResolver*, const WebMediaSessionError& webError);
};
} // namespace blink
#endif // MediaSessionError_h
|