| 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 CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 bool in_page_navigation() const { return is_in_page_navigation_; } | 49 bool in_page_navigation() const { return is_in_page_navigation_; } |
| 50 | 50 |
| 51 int ssl_cert_id() const { return ssl_cert_id_; } | 51 int ssl_cert_id() const { return ssl_cert_id_; } |
| 52 | 52 |
| 53 int ssl_cert_status() const { return ssl_cert_status_; } | 53 int ssl_cert_status() const { return ssl_cert_status_; } |
| 54 | 54 |
| 55 int ssl_security_bits() const { return ssl_security_bits_; } | 55 int ssl_security_bits() const { return ssl_security_bits_; } |
| 56 | 56 |
| 57 int ssl_connection_status() const { return ssl_connection_status_; } | 57 int ssl_connection_status() const { return ssl_connection_status_; } |
| 58 | 58 |
| 59 string16 tls_username() const { return tls_username_; } |
| 60 |
| 59 bool is_content_filtered() const { return is_content_filtered_; } | 61 bool is_content_filtered() const { return is_content_filtered_; } |
| 60 | 62 |
| 61 bool is_error_page() const { return is_error_page_; } | 63 bool is_error_page() const { return is_error_page_; } |
| 62 | 64 |
| 63 int64 frame_id() const { return frame_id_; } | 65 int64 frame_id() const { return frame_id_; } |
| 64 | 66 |
| 65 private: | 67 private: |
| 66 int error_code_; | 68 int error_code_; |
| 67 PageTransition::Type transition_type_; | 69 PageTransition::Type transition_type_; |
| 68 GURL url_; | 70 GURL url_; |
| 69 bool is_main_frame_; | 71 bool is_main_frame_; |
| 70 bool is_in_page_navigation_; | 72 bool is_in_page_navigation_; |
| 71 int ssl_cert_id_; | 73 int ssl_cert_id_; |
| 72 int ssl_cert_status_; | 74 int ssl_cert_status_; |
| 73 int ssl_security_bits_; | 75 int ssl_security_bits_; |
| 74 int ssl_connection_status_; | 76 int ssl_connection_status_; |
| 77 string16 tls_username_; |
| 75 bool is_content_filtered_; | 78 bool is_content_filtered_; |
| 76 bool is_error_page_; | 79 bool is_error_page_; |
| 77 int64 frame_id_; | 80 int64 frame_id_; |
| 78 | 81 |
| 79 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); | 82 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); |
| 80 }; | 83 }; |
| 81 | 84 |
| 82 #endif // CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 85 #endif // CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
| OLD | NEW |