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

Side by Side Diff: ash/accelerators/key_hold_detector.cc

Issue 1966903002: Fix include path for moved thread_task_runner_handle.h header in ash/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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 | ash/display/display_animator_chromeos.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/accelerators/key_hold_detector.h" 5 #include "ash/accelerators/key_hold_detector.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #include "ui/aura/window_tracker.h" 11 #include "ui/aura/window_tracker.h"
12 #include "ui/aura/window_tree_host.h" 12 #include "ui/aura/window_tree_host.h"
13 #include "ui/events/event_dispatcher.h" 13 #include "ui/events/event_dispatcher.h"
14 #include "ui/events/event_processor.h" 14 #include "ui/events/event_processor.h"
15 15
16 namespace ash { 16 namespace ash {
17 namespace { 17 namespace {
18 18
19 void DispatchPressedEvent(const ui::KeyEvent& key_event, 19 void DispatchPressedEvent(const ui::KeyEvent& key_event,
20 std::unique_ptr<aura::WindowTracker> tracker) { 20 std::unique_ptr<aura::WindowTracker> tracker) {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 if (delegate_->ShouldStopEventPropagation()) 93 if (delegate_->ShouldStopEventPropagation())
94 event->StopPropagation(); 94 event->StopPropagation();
95 break; 95 break;
96 } 96 }
97 } 97 }
98 state_ = INITIAL; 98 state_ = INITIAL;
99 } 99 }
100 } 100 }
101 101
102 } // namespace ash 102 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | ash/display/display_animator_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698