Chromium Code Reviews| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 152 // provide a certificate then |cert_id_| is 0. | 152 // provide a certificate then |cert_id_| is 0. |
| 153 int cert_id_; | 153 int cert_id_; |
| 154 | 154 |
| 155 // The link to open the help center page that contains more information about | 155 // The link to open the help center page that contains more information about |
| 156 // the connection status icons. | 156 // the connection status icons. |
| 157 views::Link* help_center_link_; | 157 views::Link* help_center_link_; |
| 158 | 158 |
| 159 views::View* connection_info_content_; | 159 views::View* connection_info_content_; |
| 160 views::View* page_info_content_; | 160 views::View* page_info_content_; |
| 161 | 161 |
| 162 // The URL of the site for which to display site permissions. | |
| 163 GURL site_url_; | |
|
markusheintz_
2012/12/14 15:46:43
I think you don't use this attribute since you get
no longer working on chromium
2012/12/14 15:56:19
Thanks, uncleaned code.
| |
| 164 | |
| 162 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); | 165 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); |
| 163 }; | 166 }; |
| 164 | 167 |
| 165 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_ | 168 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_ |
| OLD | NEW |