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 CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
6 #define CHROME_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 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 int ssl_cert_status_; | 72 int ssl_cert_status_; |
73 int ssl_security_bits_; | 73 int ssl_security_bits_; |
74 int ssl_connection_status_; | 74 int ssl_connection_status_; |
75 bool is_content_filtered_; | 75 bool is_content_filtered_; |
76 bool is_error_page_; | 76 bool is_error_page_; |
77 int64 frame_id_; | 77 int64 frame_id_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); | 79 DISALLOW_COPY_AND_ASSIGN(ProvisionalLoadDetails); |
80 }; | 80 }; |
81 | 81 |
82 #endif // CHROME_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ | 82 #endif // CONTENT_BROWSER_TAB_CONTENTS_PROVISIONAL_LOAD_DETAILS_H_ |
OLD | NEW |