Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: content/public/browser/load_from_memory_cache_details.h

Issue 10582007: Moving LoadFromMemoryCacheDetails to content/public/browser and making it a struct. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixing include order. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/load_from_memory_cache_details.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/load_from_memory_cache_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698