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

Side by Side Diff: ash/shell.cc

Issue 2690533002: Remove header dependencies from sequence_checker.h to sequenced_worker_pool.h (Closed)
Patch Set: rebase Created 3 years, 10 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
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 #include "ash/wm/toplevel_window_event_handler.h" 88 #include "ash/wm/toplevel_window_event_handler.h"
89 #include "ash/wm/video_detector.h" 89 #include "ash/wm/video_detector.h"
90 #include "ash/wm/window_animations.h" 90 #include "ash/wm/window_animations.h"
91 #include "ash/wm/window_properties.h" 91 #include "ash/wm/window_properties.h"
92 #include "ash/wm/window_util.h" 92 #include "ash/wm/window_util.h"
93 #include "base/bind.h" 93 #include "base/bind.h"
94 #include "base/bind_helpers.h" 94 #include "base/bind_helpers.h"
95 #include "base/command_line.h" 95 #include "base/command_line.h"
96 #include "base/memory/ptr_util.h" 96 #include "base/memory/ptr_util.h"
97 #include "base/sys_info.h" 97 #include "base/sys_info.h"
98 #include "base/threading/sequenced_worker_pool.h"
98 #include "base/trace_event/trace_event.h" 99 #include "base/trace_event/trace_event.h"
99 #include "chromeos/audio/audio_a11y_controller.h" 100 #include "chromeos/audio/audio_a11y_controller.h"
100 #include "chromeos/chromeos_switches.h" 101 #include "chromeos/chromeos_switches.h"
101 #include "chromeos/dbus/dbus_thread_manager.h" 102 #include "chromeos/dbus/dbus_thread_manager.h"
102 #include "chromeos/system/devicemode.h" 103 #include "chromeos/system/devicemode.h"
103 #include "services/service_manager/public/cpp/connector.h" 104 #include "services/service_manager/public/cpp/connector.h"
104 #include "services/ui/public/interfaces/constants.mojom.h" 105 #include "services/ui/public/interfaces/constants.mojom.h"
105 #include "ui/aura/client/aura_constants.h" 106 #include "ui/aura/client/aura_constants.h"
106 #include "ui/aura/env.h" 107 #include "ui/aura/env.h"
107 #include "ui/aura/layout_manager.h" 108 #include "ui/aura/layout_manager.h"
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const { 938 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const {
938 return std::unique_ptr<ui::EventTargetIterator>(); 939 return std::unique_ptr<ui::EventTargetIterator>();
939 } 940 }
940 941
941 ui::EventTargeter* Shell::GetEventTargeter() { 942 ui::EventTargeter* Shell::GetEventTargeter() {
942 NOTREACHED(); 943 NOTREACHED();
943 return nullptr; 944 return nullptr;
944 } 945 }
945 946
946 } // namespace ash 947 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698