| OLD | NEW |
| (Empty) | |
| 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 #ifndef CONTENT_PUBLIC_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <string> |
| 10 #include "base/basictypes.h" |
| 11 #include "googleurl/src/gurl.h" |
| 12 #include "net/base/cert_status_flags.h" |
| 13 #include "webkit/glue/resource_type.h" |
| 14 |
| 15 namespace content { |
| 16 |
| 17 struct LoadFromMemoryCacheDetails { |
| 18 LoadFromMemoryCacheDetails(const GURL& url, |
| 19 int pid, |
| 20 int cert_id, |
| 21 net::CertStatus cert_status, |
| 22 const std::string& http_method, |
| 23 const std::string& mime_type, |
| 24 ResourceType::Type resource_type); |
| 25 ~LoadFromMemoryCacheDetails(); |
| 26 |
| 27 GURL url; |
| 28 int pid; |
| 29 int cert_id; |
| 30 net::CertStatus cert_status; |
| 31 std::string http_method; |
| 32 std::string mime_type; |
| 33 ResourceType::Type resource_type; |
| 34 }; |
| 35 |
| 36 } // namespace content |
| 37 |
| 38 #endif // CONTENT_PUBLIC_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H_ |
| OLD | NEW |