Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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_UI_SUGGESTIONS_SUGGESTIONS_ITEM_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_ITEM_H_ | |
|
marq (ping after 24h)
2017/01/10 13:46:25
Should this just be in a suggestions_item_actions.
gambard
2017/01/10 14:50:35
Done.
| |
| 7 | |
| 8 // Protocol handling the actions sent in the responder chain by the suggestion | |
| 9 // items. | |
| 10 @protocol SuggestionsItemActions | |
| 11 | |
| 12 // Send through the responder chain when the button of a suggestion item is | |
| 13 // pressed. | |
| 14 - (void)buttonPressed; | |
|
marq (ping after 24h)
2017/01/10 13:46:25
An action should have a specific purpose and not b
gambard
2017/01/10 14:50:35
Done.
| |
| 15 | |
| 16 @end | |
| 17 | |
| 18 #endif // IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_ITEM_H_ | |
| OLD | NEW |