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

Side by Side Diff: ui/views/mus/desktop_window_tree_host_mus.cc

Issue 2596283002: Include-what-you-use for ThreadTaskRunnerHandle. (Closed)
Patch Set: rebase Created 3 years, 12 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 | « services/ui/surfaces/display_compositor.cc ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "ui/views/mus/desktop_window_tree_host_mus.h" 5 #include "ui/views/mus/desktop_window_tree_host_mus.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/threading/thread_task_runner_handle.h"
8 #include "ui/aura/client/aura_constants.h" 9 #include "ui/aura/client/aura_constants.h"
9 #include "ui/aura/client/cursor_client.h" 10 #include "ui/aura/client/cursor_client.h"
10 #include "ui/aura/client/drag_drop_client.h" 11 #include "ui/aura/client/drag_drop_client.h"
11 #include "ui/aura/client/focus_client.h" 12 #include "ui/aura/client/focus_client.h"
12 #include "ui/aura/env.h" 13 #include "ui/aura/env.h"
13 #include "ui/aura/mus/window_port_mus.h" 14 #include "ui/aura/mus/window_port_mus.h"
14 #include "ui/aura/mus/window_tree_host_mus.h" 15 #include "ui/aura/mus/window_tree_host_mus.h"
15 #include "ui/aura/window.h" 16 #include "ui/aura/window.h"
16 #include "ui/base/hit_test.h" 17 #include "ui/base/hit_test.h"
17 #include "ui/display/screen.h" 18 #include "ui/display/screen.h"
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 if (window == this->window()) { 713 if (window == this->window()) {
713 is_active_ = true; 714 is_active_ = true;
714 desktop_native_widget_aura_->HandleActivationChanged(true); 715 desktop_native_widget_aura_->HandleActivationChanged(true);
715 } else if (is_active_) { 716 } else if (is_active_) {
716 is_active_ = false; 717 is_active_ = false;
717 desktop_native_widget_aura_->HandleActivationChanged(false); 718 desktop_native_widget_aura_->HandleActivationChanged(false);
718 } 719 }
719 } 720 }
720 721
721 } // namespace views 722 } // namespace views
OLDNEW
« no previous file with comments | « services/ui/surfaces/display_compositor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698