• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
LoadFromMemoryCacheDetails(const GURL & url,int pid,int cert_id,int cert_status)7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
8     const GURL& url,
9     int pid,
10     int cert_id,
11     int cert_status)
12     : url_(url),
13       pid_(pid),
14       cert_id_(cert_id),
15       cert_status_(cert_status) {
16 }
17 
~LoadFromMemoryCacheDetails()18 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
19 }
20