Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "config.h" | |
| 6 #include "modules/mediasession/MediaSessionError.h" | |
| 7 | |
| 8 #include "bindings/core/v8/ScriptPromiseResolver.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 // static | |
| 13 v8::Local<v8::Value> MediaSessionError::take(ScriptPromiseResolver* resolver, co nst WebMediaSessionError& webError) | |
| 14 { | |
| 15 v8::Isolate* isolate = resolver->scriptState()->isolate(); | |
| 16 | |
| 17 if (webError.errorType == WebMediaSessionError::ErrorTypeActivate) | |
|
philipj_slow
2015/10/07 14:37:12
Maybe just assert this so that there's just one er
davve
2015/10/08 09:17:35
Done.
| |
| 18 return v8::Exception::TypeError(v8String(isolate, "The media session act ivation failed.")); | |
|
mlamouri (slow - plz ping)
2015/10/07 14:19:31
I will not block this CL for that but I'm still ag
davve
2015/10/08 09:17:35
Point well taken. I'll make it a priority to follo
| |
| 19 | |
| 20 ASSERT_NOT_REACHED(); | |
| 21 return v8::Exception::Error(v8String(isolate, "An unknown error occurred.")) ; | |
| 22 } | |
| 23 | |
| 24 } // namespace blink | |
| OLD | NEW |