summaryrefslogtreecommitdiffstats
path: root/content/browser/load_from_memory_cache_details.cc
blob: ed805874085e9fcdf1d5a12a12df9da586d8d838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/load_from_memory_cache_details.h"

LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
    const GURL& url,
    int pid,
    int cert_id,
    net::CertStatus cert_status)
    : url_(url),
      pid_(pid),
      cert_id_(cert_id),
      cert_status_(cert_status) {
}

LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
}