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

Side by Side Diff: ios/web/public/test/test_web_client.h

Issue 2605913002: Fix include import in ios/web (Closed)
Patch Set: add missing #import Created 3 years, 11 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
« no previous file with comments | « ios/web/public/test/test_navigation_manager.mm ('k') | ios/web/public/test/test_web_state.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_ 5 #ifndef IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_
6 #define IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_ 6 #define IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/mac/scoped_nsobject.h" 11 #import "base/mac/scoped_nsobject.h"
12 #include "ios/web/public/web_client.h" 12 #import "ios/web/public/web_client.h"
13 #include "net/ssl/ssl_info.h" 13 #include "net/ssl/ssl_info.h"
14 #include "url/gurl.h" 14 #include "url/gurl.h"
15 15
16 namespace web { 16 namespace web {
17 17
18 // A WebClient used for testing purposes. 18 // A WebClient used for testing purposes.
19 class TestWebClient : public web::WebClient { 19 class TestWebClient : public web::WebClient {
20 public: 20 public:
21 TestWebClient(); 21 TestWebClient();
22 ~TestWebClient() override; 22 ~TestWebClient() override;
(...skipping 29 matching lines...) Expand all
52 // Last arguments passed to AllowCertificateError. 52 // Last arguments passed to AllowCertificateError.
53 int last_cert_error_code_; 53 int last_cert_error_code_;
54 net::SSLInfo last_cert_error_ssl_info_; 54 net::SSLInfo last_cert_error_ssl_info_;
55 GURL last_cert_error_request_url_; 55 GURL last_cert_error_request_url_;
56 bool last_cert_error_overridable_; 56 bool last_cert_error_overridable_;
57 }; 57 };
58 58
59 } // namespace web 59 } // namespace web
60 60
61 #endif // IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_ 61 #endif // IOS_WEB_PUBLIC_TEST_TEST_WEB_CLIENT_H_
OLDNEW
« no previous file with comments | « ios/web/public/test/test_navigation_manager.mm ('k') | ios/web/public/test/test_web_state.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698