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

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

Issue 2121303003: Remove the "Settings" packaged app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | build/common.gypi » ('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 <memory> 5 #include <memory>
6 #include <string> 6 #include <string>
7 #include <utility> 7 #include <utility>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/common/session/session_state_delegate.h" 10 #include "ash/common/session/session_state_delegate.h"
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 void Dismiss() override { 307 void Dismiss() override {
308 DCHECK(Shell::HasInstance()); 308 DCHECK(Shell::HasInstance());
309 Shell::GetInstance()->DismissAppList(); 309 Shell::GetInstance()->DismissAppList();
310 } 310 }
311 311
312 void ViewClosing() override { 312 void ViewClosing() override {
313 // Nothing needs to be done. 313 // Nothing needs to be done.
314 } 314 }
315 315
316 void OpenSettings() override {
317 // Nothing needs to be done.
318 }
319
320 void OpenHelp() override { 316 void OpenHelp() override {
321 // Nothing needs to be done. 317 // Nothing needs to be done.
322 } 318 }
323 319
324 void OpenFeedback() override { 320 void OpenFeedback() override {
325 // Nothing needs to be done. 321 // Nothing needs to be done.
326 } 322 }
327 323
328 void StartSpeechRecognition() override { NOTIMPLEMENTED(); } 324 void StartSpeechRecognition() override { NOTIMPLEMENTED(); }
329 void StopSpeechRecognition() override { NOTIMPLEMENTED(); } 325 void StopSpeechRecognition() override { NOTIMPLEMENTED(); }
(...skipping 25 matching lines...) Expand all
355 }; 351 };
356 352
357 } // namespace 353 } // namespace
358 354
359 app_list::AppListViewDelegate* CreateAppListViewDelegate() { 355 app_list::AppListViewDelegate* CreateAppListViewDelegate() {
360 return new ExampleAppListViewDelegate; 356 return new ExampleAppListViewDelegate;
361 } 357 }
362 358
363 } // namespace shell 359 } // namespace shell
364 } // namespace ash 360 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698