OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef IOS_WEB_WEB_STATE_JS_CRW_JS_POST_REQUEST_LOADER_H_ | |
6 #define IOS_WEB_WEB_STATE_JS_CRW_JS_POST_REQUEST_LOADER_H_ | |
7 | |
8 #import <WebKit/WKWebView.h> | |
Eugene But (OOO till 7-30)
2015/12/02 17:06:15
s/<WebKit/WKWebView.h>/<WebKit/WebKit.h>
https://
stkhapugin
2015/12/03 15:43:01
Done.
| |
9 | |
10 @class CRWWKScriptMessageRouter; | |
11 | |
12 // Class to load POST requests in a provided web view via JavaScript. | |
13 @interface CRWJSPOSTRequestLoader : NSObject | |
14 | |
15 // Asynchronously loads a POST |request| in provided |webView|. | |
16 // It temporarily installs JavaScript message routers with |messageRouter| to | |
17 // handle HTTP errors. If an error occurs, |errorBlock| is called. If the load | |
18 // was successfull, the optional |successBlock| is called. | |
19 - (void)loadPOSTRequest:(NSURLRequest*)request | |
20 inWebView:(WKWebView*)webView | |
21 messageRouter:(CRWWKScriptMessageRouter*)messageRouter | |
22 errorBlock:(void (^)(NSError*))errorBlock | |
Eugene But (OOO till 7-30)
2015/12/02 17:06:15
There should be only one completion handler for bo
stkhapugin
2015/12/03 15:43:01
Done.
| |
23 successBlock:(void (^)())successBlock; | |
24 | |
25 @end | |
26 | |
27 #endif // IOS_WEB_WEB_STATE_JS_CRW_JS_POST_REQUEST_LOADER_H_ | |
OLD | NEW |