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

Side by Side Diff: athena/home/app_list_view_delegate.cc

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, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "athena/home/app_list_view_delegate.h" 5 #include "athena/home/app_list_view_delegate.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "athena/home/public/app_model_builder.h" 10 #include "athena/home/public/app_model_builder.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 100
101 void AppListViewDelegate::AutoLaunchCanceled() { 101 void AppListViewDelegate::AutoLaunchCanceled() {
102 // Used by voice search, nothing needs to be done for now. 102 // Used by voice search, nothing needs to be done for now.
103 } 103 }
104 104
105 void AppListViewDelegate::ViewInitialized() { 105 void AppListViewDelegate::ViewInitialized() {
106 // Nothing needs to be done. 106 // Nothing needs to be done.
107 } 107 }
108 108
109 void AppListViewDelegate::ViewReinitializedForProfileChange() {
110 // Nothing needs to be done.
111 }
112
109 void AppListViewDelegate::Dismiss() { 113 void AppListViewDelegate::Dismiss() {
110 // Nothing needs to be done. 114 // Nothing needs to be done.
111 } 115 }
112 116
113 void AppListViewDelegate::ViewClosing() { 117 void AppListViewDelegate::ViewClosing() {
114 // Nothing needs to be done. 118 // Nothing needs to be done.
115 } 119 }
116 120
117 gfx::ImageSkia AppListViewDelegate::GetWindowIcon() { 121 gfx::ImageSkia AppListViewDelegate::GetWindowIcon() {
118 return gfx::ImageSkia(); 122 return gfx::ImageSkia();
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 const app_list::AppListViewDelegate::Users& 170 const app_list::AppListViewDelegate::Users&
167 AppListViewDelegate::GetUsers() const { 171 AppListViewDelegate::GetUsers() const {
168 return users_; 172 return users_;
169 } 173 }
170 174
171 bool AppListViewDelegate::ShouldCenterWindow() const { 175 bool AppListViewDelegate::ShouldCenterWindow() const {
172 return true; 176 return true;
173 } 177 }
174 178
175 } // namespace athena 179 } // namespace athena
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698