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