OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/runner/shell_test_base.h" | 5 #include "mojo/runner/shell_test_base.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 } | 40 } |
41 | 41 |
42 void ShellTestBase::TearDown() { | 42 void ShellTestBase::TearDown() { |
43 shell_context_.Shutdown(); | 43 shell_context_.Shutdown(); |
44 } | 44 } |
45 | 45 |
46 ScopedMessagePipeHandle ShellTestBase::ConnectToService( | 46 ScopedMessagePipeHandle ShellTestBase::ConnectToService( |
47 const GURL& application_url, | 47 const GURL& application_url, |
48 const std::string& service_name) { | 48 const std::string& service_name) { |
49 ServiceProviderPtr services; | 49 ServiceProviderPtr services; |
| 50 mojo::URLRequestPtr request(mojo::URLRequest::New()); |
| 51 request->url = mojo::String::From(application_url.spec()); |
50 | 52 |
51 scoped_ptr<shell::ConnectToApplicationParams> params( | 53 scoped_ptr<shell::ConnectToApplicationParams> params( |
52 new shell::ConnectToApplicationParams); | 54 new shell::ConnectToApplicationParams); |
53 params->SetTarget(shell::Identity(application_url, std::string(), | 55 params->SetURLInfo(request.Pass()); |
54 shell::GetPermissiveCapabilityFilter())); | |
55 params->set_services(GetProxy(&services)); | 56 params->set_services(GetProxy(&services)); |
| 57 params->set_filter(shell::GetPermissiveCapabilityFilter()); |
56 params->set_on_application_end(base::Bind(&QuitIfRunning)); | 58 params->set_on_application_end(base::Bind(&QuitIfRunning)); |
57 shell_context_.application_manager()->ConnectToApplication(params.Pass()); | 59 shell_context_.application_manager()->ConnectToApplication(params.Pass()); |
58 MessagePipe pipe; | 60 MessagePipe pipe; |
59 services->ConnectToService(service_name, pipe.handle1.Pass()); | 61 services->ConnectToService(service_name, pipe.handle1.Pass()); |
60 return pipe.handle0.Pass(); | 62 return pipe.handle0.Pass(); |
61 } | 63 } |
62 | 64 |
63 #if !defined(OS_ANDROID) | 65 #if !defined(OS_ANDROID) |
64 base::FilePath ShellTestBase::GetTestAppFilePath() const { | 66 base::FilePath ShellTestBase::GetTestAppFilePath() const { |
65 base::FilePath shell_dir; | 67 base::FilePath shell_dir; |
66 PathService::Get(base::DIR_MODULE, &shell_dir); | 68 PathService::Get(base::DIR_MODULE, &shell_dir); |
67 return shell_dir; | 69 return shell_dir; |
68 } | 70 } |
69 #endif | 71 #endif |
70 | 72 |
71 } // namespace test | 73 } // namespace test |
72 } // namespace runner | 74 } // namespace runner |
73 } // namespace mojo | 75 } // namespace mojo |
OLD | NEW |