OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "modules/mediasession/MediaSessionError.h" | 5 #include "modules/mediasession/MediaSessionError.h" |
6 | 6 |
7 #include "bindings/core/v8/ScriptPromiseResolver.h" | 7 #include "bindings/core/v8/ScriptPromiseResolver.h" |
8 #include "core/dom/DOMException.h" | 8 #include "core/dom/DOMException.h" |
9 #include "core/dom/ExceptionCode.h" | 9 #include "core/dom/ExceptionCode.h" |
10 #include "public/platform/modules/mediasession/WebMediaSessionError.h" | 10 #include "public/platform/modules/mediasession/WebMediaSessionError.h" |
11 | 11 |
12 namespace blink { | 12 namespace blink { |
13 | 13 |
14 // static | 14 // static |
15 DOMException* MediaSessionError::take(ScriptPromiseResolver*, const WebMediaSess
ionError& webError) | 15 DOMException* MediaSessionError::take(ScriptPromiseResolver*, const WebMediaSess
ionError& webError) |
16 { | 16 { |
17 ASSERT(webError == WebMediaSessionError::Activate); | 17 DCHECK(webError == WebMediaSessionError::Activate); |
18 return DOMException::create(InvalidStateError, "The media session activation
failed."); | 18 return DOMException::create(InvalidStateError, "The media session activation
failed."); |
19 } | 19 } |
20 | 20 |
21 } // namespace blink | 21 } // namespace blink |
OLD | NEW |