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

Unified Diff: content/renderer/media/user_media_client_impl_unittest.cc

Issue 1075833002: Delay completion of getUserMedia in UserMediaClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/media/user_media_client_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/user_media_client_impl_unittest.cc
diff --git a/content/renderer/media/user_media_client_impl_unittest.cc b/content/renderer/media/user_media_client_impl_unittest.cc
index 08d5c8ab2dfd69f0f446d4a77f05e2a1146cc09d..f92443ce7e763909e7df526bb941575c4080d324 100644
--- a/content/renderer/media/user_media_client_impl_unittest.cc
+++ b/content/renderer/media/user_media_client_impl_unittest.cc
@@ -77,13 +77,13 @@ class UserMediaClientImplUnderTest : public UserMediaClientImpl {
void GetUserMediaRequestSucceeded(
const blink::WebMediaStream& stream,
- blink::WebUserMediaRequest* request_info) override {
+ blink::WebUserMediaRequest request_info) override {
last_generated_stream_ = stream;
state_ = REQUEST_SUCCEEDED;
}
void GetUserMediaRequestFailed(
- blink::WebUserMediaRequest* request_info,
+ blink::WebUserMediaRequest request_info,
content::MediaStreamRequestResult result,
const blink::WebString& result_name) override {
last_generated_stream_.reset();
« no previous file with comments | « content/renderer/media/user_media_client_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698