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

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

Issue 7819009: For the SSL cert status, convert anonymous enum that gives bit values into a typedefed uint32. Th... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 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 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/browser/load_from_memory_cache_details.h" 5 #include "content/browser/load_from_memory_cache_details.h"
6 6
7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( 7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
8 const GURL& url, 8 const GURL& url,
9 int pid, 9 int pid,
10 int cert_id, 10 int cert_id,
11 int cert_status) 11 net::CertStatus cert_status)
12 : url_(url), 12 : url_(url),
13 pid_(pid), 13 pid_(pid),
14 cert_id_(cert_id), 14 cert_id_(cert_id),
15 cert_status_(cert_status) { 15 cert_status_(cert_status) {
16 } 16 }
17 17
18 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { 18 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
19 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698