| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/load_from_memory_cache_details.h" | 5 #include "content/public/browser/load_from_memory_cache_details.h" |
| 6 |
| 7 namespace content { |
| 6 | 8 |
| 7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( | 9 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( |
| 8 const GURL& url, | 10 const GURL& url, |
| 9 int pid, | 11 int pid, |
| 10 int cert_id, | 12 int cert_id, |
| 11 net::CertStatus cert_status, | 13 net::CertStatus cert_status, |
| 12 const std::string& http_method, | 14 const std::string& http_method, |
| 13 const std::string& mime_type, | 15 const std::string& mime_type, |
| 14 ResourceType::Type resource_type) | 16 ResourceType::Type resource_type) |
| 15 : url_(url), | 17 : url(url), |
| 16 pid_(pid), | 18 pid(pid), |
| 17 cert_id_(cert_id), | 19 cert_id(cert_id), |
| 18 cert_status_(cert_status), | 20 cert_status(cert_status), |
| 19 http_method_(http_method), | 21 http_method(http_method), |
| 20 mime_type_(mime_type), | 22 mime_type(mime_type), |
| 21 resource_type_(resource_type) { | 23 resource_type(resource_type) { |
| 22 } | 24 } |
| 23 | 25 |
| 24 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { | 26 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { |
| 25 } | 27 } |
| 28 |
| 29 } // namespace content |
| OLD | NEW |