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

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

Issue 6272025: Part 2 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright 2011 Created 9 years, 10 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
(Empty)
1 // Copyright (c) 2011 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 "chrome/browser/load_from_memory_cache_details.h"
6
7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
8 const GURL& url,
9 const std::string& frame_origin,
10 const std::string& main_frame_origin,
11 int pid,
12 int cert_id,
13 int cert_status)
14 : url_(url),
15 frame_origin_(frame_origin),
16 main_frame_origin_(main_frame_origin),
17 pid_(pid),
18 cert_id_(cert_id),
19 cert_status_(cert_status) {
20 }
21
22 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
23 }
OLDNEW
« no previous file with comments | « chrome/browser/load_from_memory_cache_details.h ('k') | chrome/browser/net/websocket_experiment/websocket_experiment_task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698