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_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ |
6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ | 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "chrome/browser/content_settings/tab_specific_content_settings.h" | 10 #include "chrome/browser/content_settings/tab_specific_content_settings.h" |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 HostContentSettingsMap* content_settings_; | 229 HostContentSettingsMap* content_settings_; |
230 | 230 |
231 // Service for managing SSL error page bypasses. Used to revoke bypass | 231 // Service for managing SSL error page bypasses. Used to revoke bypass |
232 // decisions by users. | 232 // decisions by users. |
233 ChromeSSLHostStateDelegate* chrome_ssl_host_state_delegate_; | 233 ChromeSSLHostStateDelegate* chrome_ssl_host_state_delegate_; |
234 | 234 |
235 bool did_revoke_user_ssl_decisions_; | 235 bool did_revoke_user_ssl_decisions_; |
236 | 236 |
237 Profile* profile_; | 237 Profile* profile_; |
238 | 238 |
| 239 security_state::SecurityStateModel::SecurityLevel security_level_ = |
| 240 security_state::SecurityStateModel::NONE; |
| 241 |
239 DISALLOW_COPY_AND_ASSIGN(WebsiteSettings); | 242 DISALLOW_COPY_AND_ASSIGN(WebsiteSettings); |
240 }; | 243 }; |
241 | 244 |
242 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ | 245 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ |
OLD | NEW |