Index: ios/web/web_state/ui/web_view_js_utils.h |
diff --git a/ios/web/web_state/ui/web_view_js_utils.h b/ios/web/web_state/ui/web_view_js_utils.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0ba1193d12b29d2d36aa59aedb78ac35ecfb7ba2 |
--- /dev/null |
+++ b/ios/web/web_state/ui/web_view_js_utils.h |
@@ -0,0 +1,35 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_ |
+#define IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_ |
+ |
+#import <Foundation/Foundation.h> |
+ |
+#include "ios/web/public/block_types.h" |
+ |
+@class UIWebView; |
+@class WKWebView; |
+ |
+// This file contains functions that asynchronously evaluate JavaScript on |
+// WKWebView/UIWebView and provide result in the same format. Call |
+// |completion_handler| with results of the evaluation or an NSError if there is |
+// an error. The |completion_handler| can be nil. |
+namespace web { |
+ |
+// Asynchronous adaptor to evaluate JavaScript on UIWebView. Provides evaluation |
+// result as it is, without modifications. |
+void EvaluateJavaScript(UIWebView* web_view, |
+ NSString* script, |
+ JavaScriptCompletion completion_handler); |
+ |
+// Evaluates JavaScript on WKWebView. Provides evaluation result is the same |
+// format as UIWebView. |
+void EvaluateJavaScript(WKWebView* web_view, |
+ NSString* script, |
+ JavaScriptCompletion completion_handler); |
+ |
+} // namespace web |
+ |
+#endif // IOS_WEB_WEB_STATE_UI_WEB_VIEW_JS_UTILS_H_ |