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

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

Issue 352033002: Added --custom-launcher-page. Adds a page to the experimental launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ash_shell build. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
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 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
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
OLDNEW
« no previous file with comments | « athena/home/app_list_view_delegate.h ('k') | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698