| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stdint.h> |
| 6 |
| 5 #include "mojo/shell/test_package_manager.h" | 7 #include "mojo/shell/test_package_manager.h" |
| 6 | 8 |
| 7 namespace mojo { | 9 namespace mojo { |
| 8 namespace shell { | 10 namespace shell { |
| 9 namespace test { | 11 namespace test { |
| 10 | 12 |
| 11 TestPackageManager::TestPackageManager() {} | 13 TestPackageManager::TestPackageManager() {} |
| 12 TestPackageManager::~TestPackageManager() {} | 14 TestPackageManager::~TestPackageManager() {} |
| 13 | 15 |
| 14 void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {} | 16 void TestPackageManager::SetApplicationManager(ApplicationManager* manager) {} |
| 15 void TestPackageManager::FetchRequest( | 17 void TestPackageManager::FetchRequest( |
| 16 URLRequestPtr request, | 18 URLRequestPtr request, |
| 17 const Fetcher::FetchCallback& loader_callback) {} | 19 const Fetcher::FetchCallback& loader_callback) {} |
| 18 uint32_t TestPackageManager::HandleWithContentHandler( | 20 uint32_t TestPackageManager::HandleWithContentHandler( |
| 19 Fetcher* fetcher, | 21 Fetcher* fetcher, |
| 20 const Identity& source, | 22 const Identity& source, |
| 21 const GURL& target_url, | 23 const GURL& target_url, |
| 22 const CapabilityFilter& target_filter, | 24 const CapabilityFilter& target_filter, |
| 23 InterfaceRequest<Application>* application_request) { | 25 InterfaceRequest<Application>* application_request) { |
| 24 return 0; | 26 return 0; |
| 25 } | 27 } |
| 26 | 28 |
| 27 } // namespace test | 29 } // namespace test |
| 28 } // namespace shell | 30 } // namespace shell |
| 29 } // namespace mojo | 31 } // namespace mojo |
| OLD | NEW |