| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ | 5 #ifndef UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ |
| 6 #define UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ | 6 #define UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "ui/app_list/app_list_export.h" | 8 #include "ui/app_list/app_list_export.h" |
| 9 | 9 |
| 10 namespace app_list { | 10 namespace app_list { |
| 11 | 11 |
| 12 class APP_LIST_EXPORT SearchResultObserver { | 12 class APP_LIST_EXPORT SearchResultObserver { |
| 13 public: | 13 public: |
| 14 // Invoked when the SearchResult's icon has changed. | 14 // Invoked when the SearchResult's icon has changed. |
| 15 virtual void OnIconChanged() {} | 15 virtual void OnIconChanged() {} |
| 16 | 16 |
| 17 // Invoked when the SearchResult's badge icon has changed. | 17 // Invoked when the SearchResult's badge icon has changed. |
| 18 virtual void OnBadgeIconChanged() {} | 18 virtual void OnBadgeIconChanged() {} |
| 19 | 19 |
| 20 // Invoked when the SearchResult's app rating has changed. | |
| 21 virtual void OnRatingChanged() {} | |
| 22 | |
| 23 // Invoked when the SearchResult's app formatted price has changed. | |
| 24 virtual void OnFormattedPriceChanged() {} | |
| 25 | |
| 26 // Invoked when the SearchResult's actions have changed. | 20 // Invoked when the SearchResult's actions have changed. |
| 27 virtual void OnActionsChanged() {} | 21 virtual void OnActionsChanged() {} |
| 28 | 22 |
| 29 // Invoked when the SearchResult's is_installing flag has changed. | 23 // Invoked when the SearchResult's is_installing flag has changed. |
| 30 virtual void OnIsInstallingChanged() {} | 24 virtual void OnIsInstallingChanged() {} |
| 31 | 25 |
| 32 // Invoked when the download percentage has changed. | 26 // Invoked when the download percentage has changed. |
| 33 virtual void OnPercentDownloadedChanged() {} | 27 virtual void OnPercentDownloadedChanged() {} |
| 34 | 28 |
| 35 // Invoked when the item represented by the SearchResult is installed. | 29 // Invoked when the item represented by the SearchResult is installed. |
| 36 virtual void OnItemInstalled() {} | 30 virtual void OnItemInstalled() {} |
| 37 | 31 |
| 38 // Invoked just before the SearchResult is destroyed. | 32 // Invoked just before the SearchResult is destroyed. |
| 39 virtual void OnResultDestroying() {} | 33 virtual void OnResultDestroying() {} |
| 40 | 34 |
| 41 // Invoked when SearchResult has an associated view, and the mouse cursor | 35 // Invoked when SearchResult has an associated view, and the mouse cursor |
| 42 // enters or exits that view. This is needed because the view is | 36 // enters or exits that view. This is needed because the view is |
| 43 // views::WebView and existing views mouse enter/exit events that are sent to | 37 // views::WebView and existing views mouse enter/exit events that are sent to |
| 44 // its parent indicate the mouse "exited" the parent when it's actually over | 38 // its parent indicate the mouse "exited" the parent when it's actually over |
| 45 // the WebView child. | 39 // the WebView child. |
| 46 virtual void OnViewHoverStateChanged() {} | 40 virtual void OnViewHoverStateChanged() {} |
| 47 | 41 |
| 48 protected: | 42 protected: |
| 49 virtual ~SearchResultObserver() {} | 43 virtual ~SearchResultObserver() {} |
| 50 }; | 44 }; |
| 51 | 45 |
| 52 } // namespace app_list | 46 } // namespace app_list |
| 53 | 47 |
| 54 #endif // UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ | 48 #endif // UI_APP_LIST_SEARCH_RESULT_OBSERVER_H_ |
| OLD | NEW |