OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_ |
| 6 #define IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_ |
| 7 |
| 8 #import <Foundation/Foundation.h> |
| 9 |
| 10 @class FormSuggestion; |
| 11 |
| 12 // Handles user interaction with a FormSuggestionView. |
| 13 @protocol FormSuggestionViewClient<NSObject> |
| 14 |
| 15 // Called when a suggestion is selected. |
| 16 - (void)didSelectSuggestion:(FormSuggestion*)suggestion; |
| 17 |
| 18 @end |
| 19 |
| 20 #endif // IOS_CHROME_BROWSER_AUTOFILL_FORM_SUGGESTION_VIEW_CLIENT_H_ |
OLD | NEW |