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 UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_DELEGATE_H_
6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_DELEGATE_H_
10 class SearchResultActionsViewDelegate
{
12 // Invoked when the action button represent the action at |index| is pressed
13 // in SearchResultActionsView.
14 virtual void OnSearchResultActionActivated(size_t index
, int event_flags
) = 0;
17 virtual ~SearchResultActionsViewDelegate() {}
20 } // namespace app_list
22 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_DELEGATE_H_