| 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 | 8 |
| 9 #include "athena/home/public/app_model_builder.h" | 9 #include "athena/home/public/app_model_builder.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 void AppListViewDelegate::ShowForProfileByPath( | 148 void AppListViewDelegate::ShowForProfileByPath( |
| 149 const base::FilePath& profile_path) { | 149 const base::FilePath& profile_path) { |
| 150 // Nothing needs to be done. | 150 // Nothing needs to be done. |
| 151 } | 151 } |
| 152 | 152 |
| 153 views::View* AppListViewDelegate::CreateStartPageWebView( | 153 views::View* AppListViewDelegate::CreateStartPageWebView( |
| 154 const gfx::Size& size) { | 154 const gfx::Size& size) { |
| 155 return NULL; | 155 return NULL; |
| 156 } | 156 } |
| 157 | 157 |
| 158 views::View* AppListViewDelegate::CreateCustomPageWebView( |
| 159 const gfx::Size& size) { |
| 160 return NULL; |
| 161 } |
| 162 |
| 158 bool AppListViewDelegate::IsSpeechRecognitionEnabled() { | 163 bool AppListViewDelegate::IsSpeechRecognitionEnabled() { |
| 159 return false; | 164 return false; |
| 160 } | 165 } |
| 161 | 166 |
| 162 const app_list::AppListViewDelegate::Users& | 167 const app_list::AppListViewDelegate::Users& |
| 163 AppListViewDelegate::GetUsers() const { | 168 AppListViewDelegate::GetUsers() const { |
| 164 return users_; | 169 return users_; |
| 165 } | 170 } |
| 166 | 171 |
| 167 bool AppListViewDelegate::ShouldCenterWindow() const { | 172 bool AppListViewDelegate::ShouldCenterWindow() const { |
| 168 return true; | 173 return true; |
| 169 } | 174 } |
| 170 | 175 |
| 171 } // namespace athena | 176 } // namespace athena |
| OLD | NEW |