Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: chrome/browser/ssl/bad_clock_blocking_page.h

Issue 1899083002: Convert //chrome from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ 5 #ifndef CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_
6 #define CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ 6 #define CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/callback.h" 11 #include "base/callback.h"
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "chrome/browser/interstitials/security_interstitial_page.h" 14 #include "chrome/browser/interstitials/security_interstitial_page.h"
15 #include "chrome/browser/ssl/ssl_cert_reporter.h" 15 #include "chrome/browser/ssl/ssl_cert_reporter.h"
16 #include "components/ssl_errors/error_classification.h" 16 #include "components/ssl_errors/error_classification.h"
17 #include "net/ssl/ssl_info.h" 17 #include "net/ssl/ssl_info.h"
18 18
19 class CertReportHelper; 19 class CertReportHelper;
20 class GURL; 20 class GURL;
21 21
22 namespace security_interstitials { 22 namespace security_interstitials {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 const base::Time time_triggered_; 73 const base::Time time_triggered_;
74 std::unique_ptr<ChromeControllerClient> controller_; 74 std::unique_ptr<ChromeControllerClient> controller_;
75 75
76 std::unique_ptr<security_interstitials::BadClockUI> bad_clock_ui_; 76 std::unique_ptr<security_interstitials::BadClockUI> bad_clock_ui_;
77 std::unique_ptr<CertReportHelper> cert_report_helper_; 77 std::unique_ptr<CertReportHelper> cert_report_helper_;
78 78
79 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); 79 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage);
80 }; 80 };
81 81
82 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_ 82 #endif // CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/process_singleton_browsertest.cc ('k') | chrome/browser/ssl/certificate_reporting_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698