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 "shell/url_response_disk_cache_loader.h" |
| 6 |
| 7 namespace shell { |
| 8 |
| 9 URLResponseDiskCacheLoader::URLResponseDiskCacheLoader() { |
| 10 } |
| 11 |
| 12 URLResponseDiskCacheLoader::~URLResponseDiskCacheLoader() { |
| 13 } |
| 14 |
| 15 void URLResponseDiskCacheLoader::Load( |
| 16 const GURL& url, |
| 17 mojo::InterfaceRequest<mojo::Application> application_request) { |
| 18 DCHECK(application_request.is_pending()); |
| 19 application_.reset(new mojo::ApplicationImpl(&url_response_disk_cache_, |
| 20 application_request.Pass())); |
| 21 } |
| 22 |
| 23 } // namespace shell |
OLD | NEW |