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

Side by Side Diff: ash/shell.cc

Issue 2718563008: mash: Use mojo for ShelfItemDelegate and [app] MenuItem. (Closed)
Patch Set: Address comments. Created 3 years, 9 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
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 "ash/shell.h" 5 #include "ash/shell.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
11 #include "ash/accelerators/accelerator_controller_delegate_aura.h" 11 #include "ash/accelerators/accelerator_controller_delegate_aura.h"
12 #include "ash/accelerators/accelerator_delegate.h" 12 #include "ash/accelerators/accelerator_delegate.h"
13 #include "ash/accelerators/magnifier_key_scroller.h" 13 #include "ash/accelerators/magnifier_key_scroller.h"
14 #include "ash/accelerators/spoken_feedback_toggler.h" 14 #include "ash/accelerators/spoken_feedback_toggler.h"
15 #include "ash/app_list/app_list_delegate_impl.h" 15 #include "ash/app_list/app_list_delegate_impl.h"
16 #include "ash/aura/wm_shell_aura.h" 16 #include "ash/aura/wm_shell_aura.h"
17 #include "ash/autoclick/autoclick_controller.h" 17 #include "ash/autoclick/autoclick_controller.h"
18 #include "ash/common/accelerators/accelerator_controller.h" 18 #include "ash/common/accelerators/accelerator_controller.h"
19 #include "ash/common/ash_constants.h" 19 #include "ash/common/ash_constants.h"
20 #include "ash/common/frame/custom_frame_view_ash.h" 20 #include "ash/common/frame/custom_frame_view_ash.h"
21 #include "ash/common/gpu_support.h" 21 #include "ash/common/gpu_support.h"
22 #include "ash/common/keyboard/keyboard_ui.h" 22 #include "ash/common/keyboard/keyboard_ui.h"
23 #include "ash/common/login_status.h" 23 #include "ash/common/login_status.h"
24 #include "ash/common/session/session_state_delegate.h" 24 #include "ash/common/session/session_state_delegate.h"
25 #include "ash/common/shelf/app_list_shelf_item_delegate.h" 25 #include "ash/common/shelf/app_list_shelf_item_delegate.h"
26 #include "ash/common/shelf/shelf_delegate.h" 26 #include "ash/common/shelf/shelf_delegate.h"
27 #include "ash/common/shelf/shelf_item_delegate.h"
28 #include "ash/common/shelf/shelf_model.h" 27 #include "ash/common/shelf/shelf_model.h"
29 #include "ash/common/shelf/wm_shelf.h" 28 #include "ash/common/shelf/wm_shelf.h"
30 #include "ash/common/shell_delegate.h" 29 #include "ash/common/shell_delegate.h"
31 #include "ash/common/system/chromeos/bluetooth/bluetooth_notification_controller .h" 30 #include "ash/common/system/chromeos/bluetooth/bluetooth_notification_controller .h"
32 #include "ash/common/system/chromeos/network/sms_observer.h" 31 #include "ash/common/system/chromeos/network/sms_observer.h"
33 #include "ash/common/system/chromeos/power/power_status.h" 32 #include "ash/common/system/chromeos/power/power_status.h"
34 #include "ash/common/system/status_area_widget.h" 33 #include "ash/common/system/status_area_widget.h"
35 #include "ash/common/system/tray/system_tray_delegate.h" 34 #include "ash/common/system/tray/system_tray_delegate.h"
36 #include "ash/common/wallpaper/wallpaper_delegate.h" 35 #include "ash/common/wallpaper/wallpaper_delegate.h"
37 #include "ash/common/wm/container_finder.h" 36 #include "ash/common/wm/container_finder.h"
(...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const { 950 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const {
952 return std::unique_ptr<ui::EventTargetIterator>(); 951 return std::unique_ptr<ui::EventTargetIterator>();
953 } 952 }
954 953
955 ui::EventTargeter* Shell::GetEventTargeter() { 954 ui::EventTargeter* Shell::GetEventTargeter() {
956 NOTREACHED(); 955 NOTREACHED();
957 return nullptr; 956 return nullptr;
958 } 957 }
959 958
960 } // namespace ash 959 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698