| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Harri Porten (porten@kde.org) | 2 * Copyright (C) 2000 Harri Porten (porten@kde.org) |
| 3 * Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org) | 3 * Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org) |
| 4 * Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org) | 4 * Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 { | 51 { |
| 52 if (!successCallback) | 52 if (!successCallback) |
| 53 return; | 53 return; |
| 54 | 54 |
| 55 UserMediaController* userMedia = UserMediaController::from(navigator.frame()
? navigator.frame()->page() : 0); | 55 UserMediaController* userMedia = UserMediaController::from(navigator.frame()
? navigator.frame()->page() : 0); |
| 56 if (!userMedia) { | 56 if (!userMedia) { |
| 57 exceptionState.throwDOMException(NotSupportedError, "No user media contr
oller available; is this a detached window?"); | 57 exceptionState.throwDOMException(NotSupportedError, "No user media contr
oller available; is this a detached window?"); |
| 58 return; | 58 return; |
| 59 } | 59 } |
| 60 | 60 |
| 61 RefPtr<UserMediaRequest> request = UserMediaRequest::create(navigator.frame(
)->document(), userMedia, options, successCallback, errorCallback, exceptionStat
e); | 61 RefPtrWillBeRawPtr<UserMediaRequest> request = UserMediaRequest::create(navi
gator.frame()->document(), userMedia, options, successCallback, errorCallback, e
xceptionState); |
| 62 if (!request) { | 62 if (!request) { |
| 63 ASSERT(exceptionState.hadException()); | 63 ASSERT(exceptionState.hadException()); |
| 64 return; | 64 return; |
| 65 } | 65 } |
| 66 | 66 |
| 67 request->start(); | 67 request->start(); |
| 68 } | 68 } |
| 69 | 69 |
| 70 void NavigatorMediaStream::getMediaDevices(Navigator& navigator, PassOwnPtr<Medi
aDeviceInfoCallback> callback, ExceptionState& exceptionState) | 70 void NavigatorMediaStream::getMediaDevices(Navigator& navigator, PassOwnPtr<Medi
aDeviceInfoCallback> callback, ExceptionState& exceptionState) |
| 71 { | 71 { |
| 72 UserMediaController* userMedia = UserMediaController::from(navigator.frame()
? navigator.frame()->page() : 0); | 72 UserMediaController* userMedia = UserMediaController::from(navigator.frame()
? navigator.frame()->page() : 0); |
| 73 if (!userMedia) { | 73 if (!userMedia) { |
| 74 exceptionState.throwDOMException(NotSupportedError, "No media device con
troller available; is this a detached window?"); | 74 exceptionState.throwDOMException(NotSupportedError, "No media device con
troller available; is this a detached window?"); |
| 75 return; | 75 return; |
| 76 } | 76 } |
| 77 | 77 |
| 78 RefPtr<MediaDevicesRequest> request = MediaDevicesRequest::create(navigator.
frame()->document(), userMedia, callback, exceptionState); | 78 RefPtrWillBeRawPtr<MediaDevicesRequest> request = MediaDevicesRequest::creat
e(navigator.frame()->document(), userMedia, callback, exceptionState); |
| 79 if (!request) { | 79 if (!request) { |
| 80 if (!exceptionState.hadException()) | 80 if (!exceptionState.hadException()) |
| 81 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st media devices."); | 81 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st media devices."); |
| 82 return; | 82 return; |
| 83 } | 83 } |
| 84 | 84 |
| 85 request->start(); | 85 request->start(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 } // namespace WebCore | 88 } // namespace WebCore |
| OLD | NEW |