| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // The id of the certificate provided by the site. If the site does not | 154 // The id of the certificate provided by the site. If the site does not |
| 155 // provide a certificate then |cert_id_| is 0. | 155 // provide a certificate then |cert_id_| is 0. |
| 156 int cert_id_; | 156 int cert_id_; |
| 157 | 157 |
| 158 // The link to open the help center page that contains more information about | 158 // The link to open the help center page that contains more information about |
| 159 // the connection status icons. | 159 // the connection status icons. |
| 160 views::Link* help_center_link_; | 160 views::Link* help_center_link_; |
| 161 | 161 |
| 162 views::View* connection_info_content_; | 162 views::View* connection_info_content_; |
| 163 views::View* page_info_content_; | 163 views::View* page_info_content_; |
| 164 views::View* cert_trans_info_content_; |
| 164 | 165 |
| 165 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; | 166 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; |
| 166 | 167 |
| 167 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); | 168 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); |
| 168 }; | 169 }; |
| 169 | 170 |
| 170 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ | 171 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ |
| OLD | NEW |