Home | History | Annotate | Download | only in browser
      1 // Copyright (c) 2012 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 "content/public/browser/load_from_memory_cache_details.h"
      6 
      7 namespace content {
      8 
      9 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
     10     const GURL& url,
     11     int pid,
     12     int cert_id,
     13     net::CertStatus cert_status,
     14     const std::string& http_method,
     15     const std::string& mime_type,
     16     ResourceType::Type resource_type)
     17     : url(url),
     18       pid(pid),
     19       cert_id(cert_id),
     20       cert_status(cert_status),
     21       http_method(http_method),
     22       mime_type(mime_type),
     23       resource_type(resource_type) {
     24 }
     25 
     26 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
     27 }
     28 
     29 }  // namespace content
     30