| 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 CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ | 5 #ifndef CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ |
| 6 #define CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ | 6 #define CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
| 11 | 12 |
| 12 class Browser; | 13 class Browser; |
| 13 class GURL; | 14 class GURL; |
| 14 class SSLCertReporter; | 15 class SSLCertReporter; |
| 15 | 16 |
| 16 namespace net { | 17 namespace net { |
| 17 class URLRequestContext; | 18 class URLRequestContext; |
| 18 } | 19 } |
| 19 | 20 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 base::RunLoop* run_loop, | 53 base::RunLoop* run_loop, |
| 53 ExpectReport expect_report); | 54 ExpectReport expect_report); |
| 54 | 55 |
| 55 // Returns whether a report should be expected (due to the Finch config) | 56 // Returns whether a report should be expected (due to the Finch config) |
| 56 // if the user opts in. | 57 // if the user opts in. |
| 57 ExpectReport GetReportExpectedFromFinch(); | 58 ExpectReport GetReportExpectedFromFinch(); |
| 58 | 59 |
| 59 } // namespace certificate_reporting_test_utils | 60 } // namespace certificate_reporting_test_utils |
| 60 | 61 |
| 61 #endif // CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ | 62 #endif // CHROME_BROWSER_SSL_CERTIFICATE_REPORTING_TEST_UTILS_H_ |
| OLD | NEW |