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 29 matching lines...) Expand all Loading... |
40 namespace WebCore { | 40 namespace WebCore { |
41 | 41 |
42 NavigatorMediaStream::NavigatorMediaStream() | 42 NavigatorMediaStream::NavigatorMediaStream() |
43 { | 43 { |
44 } | 44 } |
45 | 45 |
46 NavigatorMediaStream::~NavigatorMediaStream() | 46 NavigatorMediaStream::~NavigatorMediaStream() |
47 { | 47 { |
48 } | 48 } |
49 | 49 |
50 void NavigatorMediaStream::webkitGetUserMedia(Navigator* navigator, const Dictio
nary& options, PassOwnPtr<NavigatorUserMediaSuccessCallback> successCallback, Pa
ssOwnPtr<NavigatorUserMediaErrorCallback> errorCallback, ExceptionState& excepti
onState) | 50 void NavigatorMediaStream::webkitGetUserMedia(Navigator& navigator, const Dictio
nary& options, PassOwnPtr<NavigatorUserMediaSuccessCallback> successCallback, Pa
ssOwnPtr<NavigatorUserMediaErrorCallback> errorCallback, ExceptionState& excepti
onState) |
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, exceptionSta
te); | 61 RefPtr<UserMediaRequest> request = UserMediaRequest::create(navigator.frame(
)->document(), userMedia, options, successCallback, errorCallback, exceptionStat
e); |
62 if (!request) { | 62 if (!request) { |
63 if (!exceptionState.hadException()) | 63 if (!exceptionState.hadException()) |
64 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st user media."); | 64 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st user media."); |
65 return; | 65 return; |
66 } | 66 } |
67 | 67 |
68 request->start(); | 68 request->start(); |
69 } | 69 } |
70 | 70 |
71 void NavigatorMediaStream::getMediaDevices(Navigator* navigator, PassOwnPtr<Medi
aDeviceInfoCallback> callback, ExceptionState& exceptionState) | 71 void NavigatorMediaStream::getMediaDevices(Navigator& navigator, PassOwnPtr<Medi
aDeviceInfoCallback> callback, ExceptionState& exceptionState) |
72 { | 72 { |
73 UserMediaController* userMedia = UserMediaController::from(navigator->frame(
) ? navigator->frame()->page() : 0); | 73 UserMediaController* userMedia = UserMediaController::from(navigator.frame()
? navigator.frame()->page() : 0); |
74 if (!userMedia) { | 74 if (!userMedia) { |
75 exceptionState.throwDOMException(NotSupportedError, "No media device con
troller available; is this a detached window?"); | 75 exceptionState.throwDOMException(NotSupportedError, "No media device con
troller available; is this a detached window?"); |
76 return; | 76 return; |
77 } | 77 } |
78 | 78 |
79 RefPtr<MediaDevicesRequest> request = MediaDevicesRequest::create(navigator-
>frame()->document(), userMedia, callback, exceptionState); | 79 RefPtr<MediaDevicesRequest> request = MediaDevicesRequest::create(navigator.
frame()->document(), userMedia, callback, exceptionState); |
80 if (!request) { | 80 if (!request) { |
81 if (!exceptionState.hadException()) | 81 if (!exceptionState.hadException()) |
82 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st media devices."); | 82 exceptionState.throwDOMException(NotSupportedError, "Failed to reque
st media devices."); |
83 return; | 83 return; |
84 } | 84 } |
85 | 85 |
86 request->start(); | 86 request->start(); |
87 } | 87 } |
88 | 88 |
89 } // namespace WebCore | 89 } // namespace WebCore |
OLD | NEW |