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

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

Issue 425653002: content: ResourceType cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/browser/load_from_memory_cache_details.h" 5 #include "content/public/browser/load_from_memory_cache_details.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( 9 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
10 const GURL& url, 10 const GURL& url,
11 int pid, 11 int pid,
12 int cert_id, 12 int cert_id,
13 net::CertStatus cert_status, 13 net::CertStatus cert_status,
14 const std::string& http_method, 14 const std::string& http_method,
15 const std::string& mime_type, 15 const std::string& mime_type,
16 ResourceType::Type resource_type) 16 ResourceType resource_type)
17 : url(url), 17 : url(url),
18 pid(pid), 18 pid(pid),
19 cert_id(cert_id), 19 cert_id(cert_id),
20 cert_status(cert_status), 20 cert_status(cert_status),
21 http_method(http_method), 21 http_method(http_method),
22 mime_type(mime_type), 22 mime_type(mime_type),
23 resource_type(resource_type) { 23 resource_type(resource_type) {
24 } 24 }
25 25
26 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { 26 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
27 } 27 }
28 28
29 } // namespace content 29 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/load_from_memory_cache_details.h ('k') | content/public/browser/resource_dispatcher_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698