普通文本  |  20行  |  516 B

// 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 "chrome/browser/load_from_memory_cache_details.h"

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

LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
}