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

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

Issue 1893083002: Change scoped_ptr to std::unique_ptr in //net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-net-all: iwyu 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 <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
12 #include "base/time/time.h" 13 #include "base/time/time.h"
13 #include "chrome/browser/interstitials/security_interstitial_page.h" 14 #include "chrome/browser/interstitials/security_interstitial_page.h"
14 #include "chrome/browser/ssl/ssl_cert_reporter.h" 15 #include "chrome/browser/ssl/ssl_cert_reporter.h"
15 #include "components/ssl_errors/error_classification.h" 16 #include "components/ssl_errors/error_classification.h"
16 #include "net/ssl/ssl_info.h" 17 #include "net/ssl/ssl_info.h"
17 18
18 class CertReportHelper; 19 class CertReportHelper;
19 class GURL; 20 class GURL;
20 21
21 namespace security_interstitials { 22 namespace security_interstitials {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 const base::Time time_triggered_; 73 const base::Time time_triggered_;
73 scoped_ptr<ChromeControllerClient> controller_; 74 scoped_ptr<ChromeControllerClient> controller_;
74 75
75 scoped_ptr<security_interstitials::BadClockUI> bad_clock_ui_; 76 scoped_ptr<security_interstitials::BadClockUI> bad_clock_ui_;
76 scoped_ptr<CertReportHelper> cert_report_helper_; 77 scoped_ptr<CertReportHelper> cert_report_helper_;
77 78
78 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage); 79 DISALLOW_COPY_AND_ASSIGN(BadClockBlockingPage);
79 }; 80 };
80 81
81 #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