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

Side by Side Diff: ui/aura/remote_root_window_host_win.cc

Issue 29883002: Attempt to re-land FocusManager removal from Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable test with note. Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « ui/aura/focus_manager.cc ('k') | ui/aura/root_window.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 (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 "ui/aura/remote_root_window_host_win.h" 5 #include "ui/aura/remote_root_window_host_win.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "base/message_loop/message_loop.h" 11 #include "base/message_loop/message_loop.h"
12 #include "ipc/ipc_message.h" 12 #include "ipc/ipc_message.h"
13 #include "ipc/ipc_sender.h" 13 #include "ipc/ipc_sender.h"
14 #include "ui/aura/client/capture_client.h"
15 #include "ui/aura/client/cursor_client.h" 14 #include "ui/aura/client/cursor_client.h"
16 #include "ui/aura/root_window.h" 15 #include "ui/aura/root_window.h"
17 #include "ui/base/cursor/cursor_loader_win.h" 16 #include "ui/base/cursor/cursor_loader_win.h"
18 #include "ui/events/event_utils.h" 17 #include "ui/events/event_utils.h"
19 #include "ui/events/keycodes/keyboard_code_conversion_win.h" 18 #include "ui/events/keycodes/keyboard_code_conversion_win.h"
20 #include "ui/base/view_prop.h" 19 #include "ui/base/view_prop.h"
21 #include "ui/gfx/insets.h" 20 #include "ui/gfx/insets.h"
22 #include "ui/metro_viewer/metro_viewer_messages.h" 21 #include "ui/metro_viewer/metro_viewer_messages.h"
23 22
24 namespace aura { 23 namespace aura {
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 } 584 }
586 585
587 void RemoteRootWindowHostWin::SetEventFlags(uint32 flags) { 586 void RemoteRootWindowHostWin::SetEventFlags(uint32 flags) {
588 if (flags == event_flags_) 587 if (flags == event_flags_)
589 return; 588 return;
590 event_flags_ = flags; 589 event_flags_ = flags;
591 SetVirtualKeyStates(event_flags_); 590 SetVirtualKeyStates(event_flags_);
592 } 591 }
593 592
594 } // namespace aura 593 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/focus_manager.cc ('k') | ui/aura/root_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698