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

Unified Diff: components/autofill/ios/browser/js_suggestion_manager.h

Issue 1007813002: [iOS] Upstream autofill component code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added dconnelly to OWNERS Created 5 years, 9 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: components/autofill/ios/browser/js_suggestion_manager.h
diff --git a/components/autofill/ios/browser/js_suggestion_manager.h b/components/autofill/ios/browser/js_suggestion_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..ab7b7921edcc85f3886f2e9d4842012845977daf
--- /dev/null
+++ b/components/autofill/ios/browser/js_suggestion_manager.h
@@ -0,0 +1,55 @@
+// Copyright 2013 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 COMPONENTS_AUTOFILL_IOS_BROWSER_JS_SUGGESTION_MANAGER_H_
+#define COMPONENTS_AUTOFILL_IOS_BROWSER_JS_SUGGESTION_MANAGER_H_
+
+#import "ios/web/public/web_state/js/crw_js_injection_manager.h"
+
+@class CRWJSInjectionReceiver;
+
+// Loads the JavaScript file, suggestion_manager.js, which contains form parsing
+// and autofill functions.
+@interface JsSuggestionManager : CRWJSInjectionManager
+
+// Focuses the next focusable element in tab order. No action if there is no
+// such element.
+- (void)selectNextElement;
+
+// Focuses the next focusable element in tab order after the element specified
+// by |formName| and |fieldName|. No action if there is no such element.
+- (void)selectElementAfterForm:(NSString*)formName field:(NSString*)fieldName;
+
+// Focuses the previous focusable element in tab order. No action if there is
+// no such element.
+- (void)selectPreviousElement;
+
+// Focuses the previous focusable element in tab order from the element
+// specified by |formName| and |fieldName|. No action if there is no such
+// element.
+- (void)selectElementBeforeForm:(NSString*)formName field:(NSString*)fieldName;
+
+// Injects JS to check if the page contains a next and previous element.
+// |completionHandler| is called with 2 BOOLs, the first indicating if a
+// previous element was found, and the second indicating if a next element was
+// found. |completionHandler| cannot be nil.
+- (void)fetchPreviousAndNextElementsPresenceWithCompletionHandler:
+ (void (^)(BOOL, BOOL))completionHandler;
+
+// Injects JS to check if the page contains a next and previous element
+// starting from the field specified by |formName| and |fieldName|.
+// |completionHandler| is called with 2 BOOLs, the first indicating if a
+// previous element was found, and the second indicating if a next element was
+// found. |completionHandler| cannot be nil.
+- (void)fetchPreviousAndNextElementsPresenceForForm:(NSString*)formName
+ field:(NSString*)fieldName
+ completionHandler:
+ (void (^)(BOOL, BOOL))completionHandler;
+
+// Closes the keyboard and defocuses the active input element.
+- (void)closeKeyboard;
+
+@end
+
+#endif // COMPONENTS_AUTOFILL_IOS_BROWSER_JS_SUGGESTION_MANAGER_H_
« no previous file with comments | « components/autofill/ios/browser/js_autofill_manager.mm ('k') | components/autofill/ios/browser/js_suggestion_manager.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698