OLD | NEW |
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 #include "ios/web/public/web_client.h" | 5 #import "ios/web/public/web_client.h" |
6 | 6 |
7 #import <Foundation/Foundation.h> | 7 #import <Foundation/Foundation.h> |
8 | 8 |
9 #if !defined(__has_feature) || !__has_feature(objc_arc) | 9 #if !defined(__has_feature) || !__has_feature(objc_arc) |
10 #error "This file requires ARC support." | 10 #error "This file requires ARC support." |
11 #endif | 11 #endif |
12 | 12 |
13 namespace web { | 13 namespace web { |
14 | 14 |
15 static WebClient* g_client; | 15 static WebClient* g_client; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 WebState* web_state, | 82 WebState* web_state, |
83 int cert_error, | 83 int cert_error, |
84 const net::SSLInfo& ssl_info, | 84 const net::SSLInfo& ssl_info, |
85 const GURL& request_url, | 85 const GURL& request_url, |
86 bool overridable, | 86 bool overridable, |
87 const base::Callback<void(bool)>& callback) { | 87 const base::Callback<void(bool)>& callback) { |
88 callback.Run(false); | 88 callback.Run(false); |
89 } | 89 } |
90 | 90 |
91 } // namespace web | 91 } // namespace web |
OLD | NEW |