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

Side by Side Diff: Source/web/UserMediaClientImpl.cpp

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 7 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
« no previous file with comments | « Source/web/UserMediaClientImpl.h ('k') | Source/web/WebMediaDevicesRequest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 40
41 using namespace WebCore; 41 using namespace WebCore;
42 42
43 namespace blink { 43 namespace blink {
44 44
45 UserMediaClientImpl::UserMediaClientImpl(WebLocalFrameImpl* webFrame) 45 UserMediaClientImpl::UserMediaClientImpl(WebLocalFrameImpl* webFrame)
46 : m_client(webFrame->client() ? webFrame->client()->userMediaClient() : 0) 46 : m_client(webFrame->client() ? webFrame->client()->userMediaClient() : 0)
47 { 47 {
48 } 48 }
49 49
50 void UserMediaClientImpl::requestUserMedia(PassRefPtr<UserMediaRequest> request) 50 void UserMediaClientImpl::requestUserMedia(PassRefPtrWillBeRawPtr<UserMediaReque st> request)
51 { 51 {
52 if (m_client) 52 if (m_client)
53 m_client->requestUserMedia(request); 53 m_client->requestUserMedia(request);
54 } 54 }
55 55
56 void UserMediaClientImpl::cancelUserMediaRequest(UserMediaRequest* request) 56 void UserMediaClientImpl::cancelUserMediaRequest(UserMediaRequest* request)
57 { 57 {
58 if (m_client) 58 if (m_client)
59 m_client->cancelUserMediaRequest(WebUserMediaRequest(request)); 59 m_client->cancelUserMediaRequest(WebUserMediaRequest(request));
60 } 60 }
61 61
62 void UserMediaClientImpl::requestMediaDevices(PassRefPtr<WebCore::MediaDevicesRe quest> request) 62 void UserMediaClientImpl::requestMediaDevices(PassRefPtrWillBeRawPtr<WebCore::Me diaDevicesRequest> request)
63 { 63 {
64 if (m_client) 64 if (m_client)
65 m_client->requestMediaDevices(request); 65 m_client->requestMediaDevices(request);
66 } 66 }
67 67
68 void UserMediaClientImpl::cancelMediaDevicesRequest(WebCore::MediaDevicesRequest * request) 68 void UserMediaClientImpl::cancelMediaDevicesRequest(WebCore::MediaDevicesRequest * request)
69 { 69 {
70 if (m_client) 70 if (m_client)
71 m_client->cancelMediaDevicesRequest(WebMediaDevicesRequest(request)); 71 m_client->cancelMediaDevicesRequest(WebMediaDevicesRequest(request));
72 } 72 }
73 73
74 } // namespace blink 74 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/UserMediaClientImpl.h ('k') | Source/web/WebMediaDevicesRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698