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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/provisional_load_details.cc
===================================================================
--- chrome/browser/tab_contents/provisional_load_details.cc (revision 75368)
+++ chrome/browser/tab_contents/provisional_load_details.cc (working copy)
@@ -1,34 +0,0 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-
-#include "chrome/browser/tab_contents/provisional_load_details.h"
-
-#include "chrome/browser/ssl/ssl_manager.h"
-
-ProvisionalLoadDetails::ProvisionalLoadDetails(bool is_main_frame,
- bool is_in_page_navigation,
- const GURL& url,
- const std::string& security_info,
- bool is_content_filtered,
- bool is_error_page,
- int64 frame_id)
- : error_code_(net::OK),
- transition_type_(PageTransition::LINK),
- url_(url),
- is_main_frame_(is_main_frame),
- is_in_page_navigation_(is_in_page_navigation),
- ssl_cert_id_(0),
- ssl_cert_status_(0),
- ssl_security_bits_(-1),
- ssl_connection_status_(0),
- is_content_filtered_(is_content_filtered),
- is_error_page_(is_error_page),
- frame_id_(frame_id) {
- SSLManager::DeserializeSecurityInfo(security_info,
- &ssl_cert_id_,
- &ssl_cert_status_,
- &ssl_security_bits_,
- &ssl_connection_status_);
-}
« 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