| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/load_from_memory_cache_details.h" |
| 6 |
| 7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( |
| 8 const GURL& url, |
| 9 const std::string& frame_origin, |
| 10 const std::string& main_frame_origin, |
| 11 int pid, |
| 12 int cert_id, |
| 13 int cert_status) |
| 14 : url_(url), |
| 15 frame_origin_(frame_origin), |
| 16 main_frame_origin_(main_frame_origin), |
| 17 pid_(pid), |
| 18 cert_id_(cert_id), |
| 19 cert_status_(cert_status) { |
| 20 } |
| 21 |
| 22 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { |
| 23 } |
| OLD | NEW |