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

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

Issue 964443002: Upstream iOS autofill driver implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add jdonnelly as OWNERS of //components/autofill/ios 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
« no previous file with comments | « components/autofill/ios/browser/autofill_driver_ios.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/ios/browser/autofill_driver_ios_bridge.h
diff --git a/components/autofill/ios/browser/autofill_driver_ios_bridge.h b/components/autofill/ios/browser/autofill_driver_ios_bridge.h
new file mode 100644
index 0000000000000000000000000000000000000000..6a00cc85c87340ffb70eaa0c2e1a71721bfd7a18
--- /dev/null
+++ b/components/autofill/ios/browser/autofill_driver_ios_bridge.h
@@ -0,0 +1,23 @@
+// 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 COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_
+#define COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_
+
+namespace autofill {
+struct FormData;
+class FormStructure;
+}
+
+@protocol AutofillDriverIOSBridge
+
+- (void)onFormDataFilled:(uint16)query_id
+ result:(const autofill::FormData&)result;
+
+- (void)sendAutofillTypePredictionsToRenderer:
+ (const std::vector<autofill::FormStructure*>&)forms;
+
+@end
+
+#endif // COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_
« no previous file with comments | « components/autofill/ios/browser/autofill_driver_ios.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698