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

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

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: 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
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 #include "content/browser/load_from_memory_cache_details.h"
6
7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
8 const GURL& url,
9 int pid,
10 int cert_id,
11 net::CertStatus cert_status,
12 const std::string& http_method,
13 const std::string& mime_type,
14 ResourceType::Type resource_type)
15 : url_(url),
16 pid_(pid),
17 cert_id_(cert_id),
18 cert_status_(cert_status),
19 http_method_(http_method),
20 mime_type_(mime_type),
21 resource_type_(resource_type) {
22 }
23
24 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698