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

Side by Side Diff: ash/shell/app_list.cc

Issue 14007002: Add help button to app launcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot OVERRIDE Created 7 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <string> 5 #include <string>
6 6
7 #include "ash/session_state_delegate.h" 7 #include "ash/session_state_delegate.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/shell/example_factory.h" 9 #include "ash/shell/example_factory.h"
10 #include "ash/shell/toplevel_window.h" 10 #include "ash/shell/toplevel_window.h"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 } 300 }
301 301
302 virtual base::string16 GetCurrentUserEmail() OVERRIDE { 302 virtual base::string16 GetCurrentUserEmail() OVERRIDE {
303 return base::string16(); 303 return base::string16();
304 } 304 }
305 305
306 virtual void OpenSettings() OVERRIDE { 306 virtual void OpenSettings() OVERRIDE {
307 // Nothing needs to be done. 307 // Nothing needs to be done.
308 } 308 }
309 309
310 virtual void OpenHelp() OVERRIDE {
311 // Nothing needs to be done.
312 }
313
310 virtual void OpenFeedback() OVERRIDE { 314 virtual void OpenFeedback() OVERRIDE {
311 // Nothing needs to be done. 315 // Nothing needs to be done.
312 } 316 }
313 317
314 app_list::AppListModel* model_; 318 app_list::AppListModel* model_;
315 319
316 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate); 320 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate);
317 }; 321 };
318 322
319 } // namespace 323 } // namespace
320 324
321 app_list::AppListViewDelegate* CreateAppListViewDelegate() { 325 app_list::AppListViewDelegate* CreateAppListViewDelegate() {
322 return new ExampleAppListViewDelegate; 326 return new ExampleAppListViewDelegate;
323 } 327 }
324 328
325 } // namespace shell 329 } // namespace shell
326 } // namespace ash 330 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | 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