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: ui/views/widget/desktop_aura/x11_desktop_window_move_client.cc

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 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
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/views/widget/desktop_aura/x11_desktop_window_move_client.h" 5 #include "ui/views/widget/desktop_aura/x11_desktop_window_move_client.h"
6 6
7 #include <X11/Xlib.h> 7 #include <X11/Xlib.h>
8 8
9 #include "base/debug/stack_trace.h" 9 #include "base/debug/stack_trace.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/message_loop/message_pump_x11.h"
12 #include "base/run_loop.h" 11 #include "base/run_loop.h"
13 #include "ui/aura/env.h" 12 #include "ui/aura/env.h"
14 #include "ui/aura/window.h" 13 #include "ui/aura/window.h"
15 #include "ui/aura/window_tree_host.h" 14 #include "ui/aura/window_tree_host.h"
16 #include "ui/base/x/x11_util.h" 15 #include "ui/base/x/x11_util.h"
17 #include "ui/events/event.h" 16 #include "ui/events/event.h"
18 #include "ui/gfx/screen.h" 17 #include "ui/gfx/screen.h"
19 18
20 namespace views { 19 namespace views {
21 20
(...skipping 30 matching lines...) Expand all
52 51
53 bool success = move_loop_.RunMoveLoop(source, host_->last_cursor()); 52 bool success = move_loop_.RunMoveLoop(source, host_->last_cursor());
54 return success ? aura::client::MOVE_SUCCESSFUL : aura::client::MOVE_CANCELED; 53 return success ? aura::client::MOVE_SUCCESSFUL : aura::client::MOVE_CANCELED;
55 } 54 }
56 55
57 void X11DesktopWindowMoveClient::EndMoveLoop() { 56 void X11DesktopWindowMoveClient::EndMoveLoop() {
58 move_loop_.EndMoveLoop(); 57 move_loop_.EndMoveLoop();
59 } 58 }
60 59
61 } // namespace views 60 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698