OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/load_from_memory_cache_details.h" |
6 | 6 |
7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( | 7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( |
8 const GURL& url, | 8 const GURL& url, |
9 int pid, | 9 int pid, |
10 int cert_id, | 10 int cert_id, |
11 int cert_status) | 11 net::CertStatus cert_status) |
12 : url_(url), | 12 : url_(url), |
13 pid_(pid), | 13 pid_(pid), |
14 cert_id_(cert_id), | 14 cert_id_(cert_id), |
15 cert_status_(cert_status) { | 15 cert_status_(cert_status) { |
16 } | 16 } |
17 | 17 |
18 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { | 18 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { |
19 } | 19 } |
OLD | NEW |