diff options
author | John Abd-El-Malek <jam@chromium.org> | 2015-05-20 20:26:40 -0700 |
---|---|---|
committer | John Abd-El-Malek <jam@chromium.org> | 2015-05-21 03:27:23 +0000 |
commit | 48b41ceb3ac3586376ca0a90ee002fe7fbf74237 (patch) | |
tree | 2e0058ad9db50574b43889f825f93f5f264db70f /media/test | |
parent | d2167074c4531a9fd3d8ddfae9110e7b1ae7540a (diff) | |
download | chromium_src-48b41ceb3ac3586376ca0a90ee002fe7fbf74237.zip chromium_src-48b41ceb3ac3586376ca0a90ee002fe7fbf74237.tar.gz chromium_src-48b41ceb3ac3586376ca0a90ee002fe7fbf74237.tar.bz2 |
Fix Linux GN all bot
Review URL: https://codereview.chromium.org/1151733003
Cr-Commit-Position: refs/heads/master@{#330879}
Diffstat (limited to 'media/test')
-rw-r--r-- | media/test/pipeline_integration_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/media/test/pipeline_integration_test.cc b/media/test/pipeline_integration_test.cc index 5af6938..055c9a2 100644 --- a/media/test/pipeline_integration_test.cc +++ b/media/test/pipeline_integration_test.cc @@ -637,9 +637,11 @@ class PipelineIntegrationTestHost : public mojo::test::ApplicationTestBase, protected: scoped_ptr<Renderer> CreateRenderer() override { + mojo::URLRequestPtr request(mojo::URLRequest::New()); + request->url = mojo::String::From("mojo:media"); mojo::ServiceProvider* service_provider = application_impl() - ->ConnectToApplication("mojo://media") + ->ConnectToApplication(request.Pass()) ->GetServiceProvider(); mojo::MediaRendererPtr mojo_media_renderer; |