| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "chrome/common/page_transition_types.h" | 12 #include "chrome/common/page_transition_types.h" |
| 13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 14 | 14 |
| 15 // This class captures some of the information associated to the provisional | 15 // This class captures some of the information associated to the provisional |
| 16 // load of a frame. It is provided as Details with the | 16 // load of a frame. It is provided as Details with the |
| 17 // NOTIFY_FRAME_PROVISIONAL_LOAD_START, NOTIFY_FRAME_PROVISIONAL_LOAD_COMMITTED | 17 // NOTIFY_FRAME_PROVISIONAL_LOAD_START, NOTIFY_FRAME_PROVISIONAL_LOAD_COMMITTED |
| 18 // and NOTIFY_FAIL_PROVISIONAL_LOAD_WITH_ERROR notifications | 18 // and NOTIFY_FAIL_PROVISIONAL_LOAD_WITH_ERROR notifications |
| 19 // (see notification_types.h). | 19 // (see notification_types.h). |
| 20 | 20 |
| 21 // TODO(brettw) this mostly duplicates | 21 // TODO(brettw) this mostly duplicates |
| 22 // NavigationController::LoadCommittedDetails, it would be nice to unify these | 22 // NavigationController::LoadCommittedDetails, it would be nice to unify these |
| 23 // somehow. | 23 // somehow. |
| 24 class ProvisionalLoadDetails { | 24 class ProvisionalLoadDetails { |
| 25 public: | 25 public: |
| 26 ProvisionalLoadDetails(bool main_frame, | 26 ProvisionalLoadDetails(bool main_frame, |
| 27 bool in_page_navigation, | 27 bool in_page_navigation, |
| 28 const GURL& url, | 28 const GURL& url, |
| 29 const std::string& security_info, | 29 const std::string& security_info, |
| 30 bool is_filtered, | |
| 31 bool is_error_page, | 30 bool is_error_page, |
| 32 int64 frame_id); | 31 int64 frame_id); |
| 33 virtual ~ProvisionalLoadDetails() { } | 32 virtual ~ProvisionalLoadDetails() { } |
| 34 | 33 |
| 35 void set_error_code(int error_code) { error_code_ = error_code; } | 34 void set_error_code(int error_code) { error_code_ = error_code; } |
| 36 int error_code() const { return error_code_; } | 35 int error_code() const { return error_code_; } |
| 37 | 36 |
| 38 void set_transition_type(PageTransition::Type transition_type) { | 37 void set_transition_type(PageTransition::Type transition_type) { |
| 39 transition_type_ = transition_type; | 38 transition_type_ = transition_type; |
| 40 } | 39 } |
| 41 PageTransition::Type transition_type() const { | 40 PageTransition::Type transition_type() const { |
| 42 return transition_type_; | 41 return transition_type_; |
| 43 } | 42 } |
| 44 | 43 |
| 45 const GURL& url() const { return url_; } | 44 const GURL& url() const { return url_; } |
| 46 | 45 |
| 47 bool main_frame() const { return is_main_frame_; } | 46 bool main_frame() const { return is_main_frame_; } |
| 48 | 47 |
| 49 bool in_page_navigation() const { return is_in_page_navigation_; } | 48 bool in_page_navigation() const { return is_in_page_navigation_; } |
| 50 | 49 |
| 51 int ssl_cert_id() const { return ssl_cert_id_; } | 50 int ssl_cert_id() const { return ssl_cert_id_; } |
| 52 | 51 |
| 53 int ssl_cert_status() const { return ssl_cert_status_; } | 52 int ssl_cert_status() const { return ssl_cert_status_; } |
| 54 | 53 |
| 55 int ssl_security_bits() const { return ssl_security_bits_; } | 54 int ssl_security_bits() const { return ssl_security_bits_; } |
| 56 | 55 |
| 57 int ssl_connection_status() const { return ssl_connection_status_; } | 56 int ssl_connection_status() const { return ssl_connection_status_; } |
| 58 | 57 |
| 59 bool is_content_filtered() const { return is_content_filtered_; } | |
| 60 | |
| 61 bool is_error_page() const { return is_error_page_; } | 58 bool is_error_page() const { return is_error_page_; } |
| 62 | 59 |
| 63 int64 frame_id() const { return frame_id_; } | 60 int64 frame_id() const { return frame_id_; } |
| 64 | 61 |
| 65 private: | 62 private: |
| 66 int error_code_; | 63 int error_code_; |
| 67 PageTransition::Type transition_type_; | 64 PageTransition::Type transition_type_; |
| 68 GURL url_; | 65 GURL url_; |
| 69 bool is_main_frame_; | 66 bool is_main_frame_; |
| 70 bool is_in_page_navigation_; | 67 bool is_in_page_navigation_; |
| 71 int ssl_cert_id_; | 68 int ssl_cert_id_; |
| 72 int ssl_cert_status_; | 69 int ssl_cert_status_; |
| 73 int ssl_security_bits_; | 70 int ssl_security_bits_; |
| 74 int ssl_connection_status_; | 71 int ssl_connection_status_; |
| 75 bool is_content_filtered_; | |
| 76 bool is_error_page_; | 72 bool is_error_page_; |
| 77 int64 frame_id_; | 73 int64 frame_id_; |
| 78 | 74 |
| 79 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); | 75 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); |
| 80 }; | 76 }; |
| 81 | 77 |
| 82 #endif // CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 78 #endif // CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| OLD | NEW |