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

Unified Diff: ios/web/web_state/ui/web_view_js_utils.h

Issue 914993006: Upstream web_controller_provider and dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@libusb
Patch Set: git cl upload --no-find-copies Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
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..0930fee788f0660f7b17eed5fc28540e3383e2fa
--- /dev/null
+++ b/ios/web/web_state/ui/web_view_js_utils.h
@@ -0,0 +1,37 @@
+// 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>
+
+@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 {
+
+// The type of the completion handler block that is called to inform about
+// JavaScript evaluation completion.
+typedef void (^JavaScriptCompletion)(NSString*, NSError*);
+
+// 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_

Powered by Google App Engine
This is Rietveld 408576698