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

Side by Side Diff: chrome/browser/tab_contents/provisional_load_details.cc

Issue 6537015: Start moving core pieces of Chrome multi-process code to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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) 2006-2008 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
6 #include "chrome/browser/tab_contents/provisional_load_details.h"
7
8 #include "chrome/browser/ssl/ssl_manager.h"
9
10 ProvisionalLoadDetails::ProvisionalLoadDetails(bool is_main_frame,
11 bool is_in_page_navigation,
12 const GURL& url,
13 const std::string& security_info,
14 bool is_content_filtered,
15 bool is_error_page,
16 int64 frame_id)
17 : error_code_(net::OK),
18 transition_type_(PageTransition::LINK),
19 url_(url),
20 is_main_frame_(is_main_frame),
21 is_in_page_navigation_(is_in_page_navigation),
22 ssl_cert_id_(0),
23 ssl_cert_status_(0),
24 ssl_security_bits_(-1),
25 ssl_connection_status_(0),
26 is_content_filtered_(is_content_filtered),
27 is_error_page_(is_error_page),
28 frame_id_(frame_id) {
29 SSLManager::DeserializeSecurityInfo(security_info,
30 &ssl_cert_id_,
31 &ssl_cert_status_,
32 &ssl_security_bits_,
33 &ssl_connection_status_);
34 }
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/provisional_load_details.h ('k') | chrome/browser/tab_contents/render_view_host_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698