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()); | |
52 | 50 |
53 scoped_ptr<shell::ConnectToApplicationParams> params( | 51 scoped_ptr<shell::ConnectToApplicationParams> params( |
54 new shell::ConnectToApplicationParams); | 52 new shell::ConnectToApplicationParams); |
55 params->SetURLInfo(request.Pass()); | 53 params->SetTarget(shell::Identity(application_url, std::string(), |
| 54 shell::GetPermissiveCapabilityFilter())); |
56 params->set_services(GetProxy(&services)); | 55 params->set_services(GetProxy(&services)); |
57 params->set_filter(shell::GetPermissiveCapabilityFilter()); | |
58 params->set_on_application_end(base::Bind(&QuitIfRunning)); | 56 params->set_on_application_end(base::Bind(&QuitIfRunning)); |
59 shell_context_.application_manager()->ConnectToApplication(params.Pass()); | 57 shell_context_.application_manager()->ConnectToApplication(params.Pass()); |
60 MessagePipe pipe; | 58 MessagePipe pipe; |
61 services->ConnectToService(service_name, pipe.handle1.Pass()); | 59 services->ConnectToService(service_name, pipe.handle1.Pass()); |
62 return pipe.handle0.Pass(); | 60 return pipe.handle0.Pass(); |
63 } | 61 } |
64 | 62 |
65 #if !defined(OS_ANDROID) | 63 #if !defined(OS_ANDROID) |
66 base::FilePath ShellTestBase::GetTestAppFilePath() const { | 64 base::FilePath ShellTestBase::GetTestAppFilePath() const { |
67 base::FilePath shell_dir; | 65 base::FilePath shell_dir; |
68 PathService::Get(base::DIR_MODULE, &shell_dir); | 66 PathService::Get(base::DIR_MODULE, &shell_dir); |
69 return shell_dir; | 67 return shell_dir; |
70 } | 68 } |
71 #endif | 69 #endif |
72 | 70 |
73 } // namespace test | 71 } // namespace test |
74 } // namespace runner | 72 } // namespace runner |
75 } // namespace mojo | 73 } // namespace mojo |
OLD | NEW |