| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ | 5 #ifndef COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ |
| 6 #define COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ | 6 #define COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 11 #include "base/values.h" | 10 #include "base/values.h" |
| 12 #include "components/security_interstitials/core/controller_client.h" | 11 #include "components/security_interstitials/core/controller_client.h" |
| 13 #include "components/ssl_errors/error_classification.h" | 12 #include "components/ssl_errors/error_classification.h" |
| 14 #include "net/ssl/ssl_info.h" | 13 #include "net/ssl/ssl_info.h" |
| 15 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 16 | 15 |
| 17 namespace security_interstitials { | 16 namespace security_interstitials { |
| 18 | 17 |
| 19 // Provides UI for SSL errors caused by clock misconfigurations. | 18 // Provides UI for SSL errors caused by clock misconfigurations. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 39 const base::Time time_triggered_; | 38 const base::Time time_triggered_; |
| 40 ControllerClient* controller_; | 39 ControllerClient* controller_; |
| 41 ssl_errors::ClockState clock_state_; | 40 ssl_errors::ClockState clock_state_; |
| 42 | 41 |
| 43 DISALLOW_COPY_AND_ASSIGN(BadClockUI); | 42 DISALLOW_COPY_AND_ASSIGN(BadClockUI); |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // security_interstitials | 45 } // security_interstitials |
| 47 | 46 |
| 48 #endif // COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ | 47 #endif // COMPONENTS_SECURITY_INTERSTITIALS_CORE_BAD_CLOCK_UI_H_ |
| OLD | NEW |