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

Unified Diff: components/autofill/ios/browser/js_autofill_manager.mm

Issue 2146523004: Make full-form autofill the only implementation on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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_autofill_manager.mm
diff --git a/components/autofill/ios/browser/js_autofill_manager.mm b/components/autofill/ios/browser/js_autofill_manager.mm
index 84d5a7235d8f927dae737e8e644cf5cd1f6be14d..68aa42d1ce1865ec4492f7c3d54233976c3a74d9 100644
--- a/components/autofill/ios/browser/js_autofill_manager.mm
+++ b/components/autofill/ios/browser/js_autofill_manager.mm
@@ -34,16 +34,6 @@
return @"__gCrWeb.autofill";
}
-- (void)storeActiveElement {
- NSString* js = @"__gCrWeb.autofill.storeActiveElement()";
- [self evaluate:js stringResultHandler:nil];
-}
-
-- (void)clearActiveElement {
- NSString* js = @"__gCrWeb.autofill.clearActiveElement()";
- [self evaluate:js stringResultHandler:nil];
-}
-
- (void)fillActiveFormField:(NSString*)dataString
completionHandler:(ProceduralBlock)completionHandler {
web::JavaScriptCompletion resultHandler = ^void(NSString*, NSError*) {

Powered by Google App Engine
This is Rietveld 408576698