OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |