Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: Source/modules/mediasession/MediaSessionError.cpp

Issue 1325493002: NOT FOR LANDING Introduce and use WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing files Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 switch (webError.errorType) {
18 case WebMediaSessionError::ErrorTypeActivate:
19 return v8::Exception::TypeError(v8String(isolate, "The media session act ivation failed."));
20 case WebMediaSessionError::ErrorTypeUnknown:
21 return v8::Exception::Error(v8String(isolate, "An unknown error occurred within media session."));
22 }
23
24 ASSERT_NOT_REACHED();
25 return v8::Exception::Error(v8String(isolate, "An unknown error occurred.")) ;
26 }
27
28 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/mediasession/MediaSessionError.h ('k') | Source/modules/mediasession/MediaSessionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698