Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / components / autofill / ios / browser / autofill_driver_ios_bridge.h
blob332c40eb74286127da24891bda061d5e0ec73658
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_
6 #define COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_
8 #include <vector>
10 #include "base/basictypes.h"
12 namespace autofill {
13 struct FormData;
14 class FormStructure;
17 @protocol AutofillDriverIOSBridge
19 - (void)onFormDataFilled:(uint16)query_id
20 result:(const autofill::FormData&)result;
22 - (void)sendAutofillTypePredictionsToRenderer:
23 (const std::vector<autofill::FormStructure*>&)forms;
25 @end
27 #endif // COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_DRIVER_IOS_BRIDGE_H_