| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "mojo/shell/shell_test_helper.h" | |
| 6 | |
| 7 #include "base/command_line.h" | |
| 8 #include "base/files/file_path.h" | |
| 9 #include "base/files/file_util.h" | |
| 10 #include "base/logging.h" | |
| 11 #include "base/path_service.h" | |
| 12 #include "mojo/shell/filename_util.h" | |
| 13 #include "mojo/shell/init.h" | |
| 14 | |
| 15 namespace mojo { | |
| 16 namespace shell { | |
| 17 | |
| 18 ShellTestHelper::ShellTestHelper() { | |
| 19 base::CommandLine::Init(0, NULL); | |
| 20 mojo::shell::InitializeLogging(); | |
| 21 } | |
| 22 | |
| 23 ShellTestHelper::~ShellTestHelper() { | |
| 24 } | |
| 25 | |
| 26 void ShellTestHelper::Init() { | |
| 27 context_.Init(); | |
| 28 test_api_.reset( | |
| 29 new ApplicationManager::TestAPI(context_.application_manager())); | |
| 30 base::FilePath service_dir; | |
| 31 CHECK(PathService::Get(base::DIR_MODULE, &service_dir)); | |
| 32 context_.mojo_url_resolver()->SetBaseURL(FilePathToFileURL(service_dir)); | |
| 33 } | |
| 34 | |
| 35 void ShellTestHelper::SetLoaderForURL(scoped_ptr<ApplicationLoader> loader, | |
| 36 const GURL& url) { | |
| 37 context_.application_manager()->SetLoaderForURL(loader.Pass(), url); | |
| 38 } | |
| 39 | |
| 40 } // namespace shell | |
| 41 } // namespace mojo | |
| OLD | NEW |