Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: ui/app_list/pagination_model_observer.h

Issue 683703002: Notify launcher page with onTransitionChanged event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@launcher_page_api_show_state_notify
Patch Set: nullptr like it's 1999 Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/app_list/pagination_model_observer.h
diff --git a/ui/app_list/pagination_model_observer.h b/ui/app_list/pagination_model_observer.h
index ee594eca8938d29d06fa839e7094926dfe7c8787..e3338b70866a5e39d7e4432b2b414089d5ef7cfc 100644
--- a/ui/app_list/pagination_model_observer.h
+++ b/ui/app_list/pagination_model_observer.h
@@ -12,16 +12,16 @@ namespace app_list {
class APP_LIST_EXPORT PaginationModelObserver {
public:
// Invoked when the total number of page is changed.
- virtual void TotalPagesChanged() = 0;
+ virtual void TotalPagesChanged() {}
// Invoked when the selected page index is changed.
- virtual void SelectedPageChanged(int old_selected, int new_selected) = 0;
+ virtual void SelectedPageChanged(int old_selected, int new_selected) {}
// Invoked when a transition starts.
- virtual void TransitionStarted() = 0;
+ virtual void TransitionStarted() {}
// Invoked when the transition data is changed.
- virtual void TransitionChanged() = 0;
+ virtual void TransitionChanged() {}
protected:
virtual ~PaginationModelObserver() {}

Powered by Google App Engine
This is Rietveld 408576698