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

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

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove "httpsv" scheme, minor NSS/OpenSSL changes Created 9 years, 8 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
« no previous file with comments | « chrome/browser/load_from_memory_cache_details.h ('k') | chrome/browser/page_info_model.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/browser/load_from_memory_cache_details.h" 5 #include "chrome/browser/load_from_memory_cache_details.h"
6 6
7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails( 7 LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
8 const GURL& url, 8 const GURL& url,
9 const std::string& frame_origin, 9 const std::string& frame_origin,
10 const std::string& main_frame_origin, 10 const std::string& main_frame_origin,
11 int pid, 11 int pid,
12 int cert_id, 12 int cert_id,
13 int cert_status) 13 int cert_status,
14 string16 tls_username)
14 : url_(url), 15 : url_(url),
15 frame_origin_(frame_origin), 16 frame_origin_(frame_origin),
16 main_frame_origin_(main_frame_origin), 17 main_frame_origin_(main_frame_origin),
17 pid_(pid), 18 pid_(pid),
18 cert_id_(cert_id), 19 cert_id_(cert_id),
19 cert_status_(cert_status) { 20 cert_status_(cert_status),
21 tls_username_(tls_username) {
20 } 22 }
21 23
22 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() { 24 LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
23 } 25 }
OLDNEW
« no previous file with comments | « chrome/browser/load_from_memory_cache_details.h ('k') | chrome/browser/page_info_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698