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

Side by Side Diff: Source/modules/mediastream/NavigatorMediaStream.cpp

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
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
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 RefPtrWillBeRawPtr<UserMediaRequest> request = UserMediaRequest::create(navi gator->frame()->document(), userMedia, options, successCallback, errorCallback, exceptionState);
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 RefPtrWillBeRawPtr<MediaDevicesRequest> request = MediaDevicesRequest::creat e(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698