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
3 // found in the LICENSE file.
5 #ifndef IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_
6 #define IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_
8 #import <Foundation/Foundation.h>
10 #include "ios/web/public/block_types.h"
15 // This file contains functions that asynchronously evaluate JavaScript on
16 // WKWebView/UIWebView and provide result in the same format. Call
17 // |completion_handler| with results of the evaluation or an NSError if there is
18 // an error. The |completion_handler| can be nil.
21 // Asynchronous adaptor to evaluate JavaScript on UIWebView. Provides evaluation
22 // result as it is, without modifications.
23 void EvaluateJavaScript(UIWebView
* web_view
,
25 JavaScriptCompletion completion_handler
);
27 // Evaluates JavaScript on WKWebView. Provides evaluation result is the same
28 // format as UIWebView.
29 void EvaluateJavaScript(WKWebView
* web_view
,
31 JavaScriptCompletion completion_handler
);
35 #endif // IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_