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

Side by Side Diff: ash/shell.cc

Issue 2611253002: Removes some dead code (Closed)
Patch Set: merge Created 3 years, 11 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 | « ash/shell.h ('k') | no next file » | 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 "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
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #include "ui/aura/window.h" 85 #include "ui/aura/window.h"
86 #include "ui/aura/window_event_dispatcher.h" 86 #include "ui/aura/window_event_dispatcher.h"
87 #include "ui/base/ui_base_switches.h" 87 #include "ui/base/ui_base_switches.h"
88 #include "ui/base/user_activity/user_activity_detector.h" 88 #include "ui/base/user_activity/user_activity_detector.h"
89 #include "ui/compositor/layer.h" 89 #include "ui/compositor/layer.h"
90 #include "ui/compositor/layer_animator.h" 90 #include "ui/compositor/layer_animator.h"
91 #include "ui/display/display.h" 91 #include "ui/display/display.h"
92 #include "ui/display/manager/display_manager.h" 92 #include "ui/display/manager/display_manager.h"
93 #include "ui/display/screen.h" 93 #include "ui/display/screen.h"
94 #include "ui/events/event_target_iterator.h" 94 #include "ui/events/event_target_iterator.h"
95 #include "ui/gfx/geometry/size.h" 95 #include "ui/gfx/geometry/insets.h"
96 #include "ui/gfx/image/image_skia.h" 96 #include "ui/gfx/image/image_skia.h"
97 #include "ui/keyboard/keyboard_controller.h" 97 #include "ui/keyboard/keyboard_controller.h"
98 #include "ui/keyboard/keyboard_switches.h" 98 #include "ui/keyboard/keyboard_switches.h"
99 #include "ui/keyboard/keyboard_util.h" 99 #include "ui/keyboard/keyboard_util.h"
100 #include "ui/message_center/message_center.h" 100 #include "ui/message_center/message_center.h"
101 #include "ui/views/corewm/tooltip_aura.h" 101 #include "ui/views/corewm/tooltip_aura.h"
102 #include "ui/views/corewm/tooltip_controller.h" 102 #include "ui/views/corewm/tooltip_controller.h"
103 #include "ui/views/widget/native_widget_aura.h" 103 #include "ui/views/widget/native_widget_aura.h"
104 #include "ui/views/widget/widget.h" 104 #include "ui/views/widget/widget.h"
105 #include "ui/wm/core/accelerator_filter.h" 105 #include "ui/wm/core/accelerator_filter.h"
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const { 908 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const {
909 return std::unique_ptr<ui::EventTargetIterator>(); 909 return std::unique_ptr<ui::EventTargetIterator>();
910 } 910 }
911 911
912 ui::EventTargeter* Shell::GetEventTargeter() { 912 ui::EventTargeter* Shell::GetEventTargeter() {
913 NOTREACHED(); 913 NOTREACHED();
914 return nullptr; 914 return nullptr;
915 } 915 }
916 916
917 } // namespace ash 917 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698