cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / ios / chrome / browser / autofill / form_suggestion_view_client.h
bloba3af25f4d3cc91554148fb6c4eaf7097f14c48bb
1 // Copyright 2013 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 IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_
6 #define IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_
8 #import <Foundation/Foundation.h>
10 @class FormSuggestion;
12 // Handles user interaction with a FormSuggestionView.
13 @protocol FormSuggestionViewClient<NSObject>
15 // Called when a suggestion is selected.
16 - (void)didSelectSuggestion:(FormSuggestion*)suggestion;
18 @end
20 #endif // IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_