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

Side by Side Diff: ui/views/widget/desktop_aura/x11_desktop_window_move_client.cc

Issue 749063003: Fix grabbing capture when the mouse is pressed on Desktop Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 "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"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // DesktopWindowTreeHostLinux, aura::client::WindowMoveClient implementation: 43 // DesktopWindowTreeHostLinux, aura::client::WindowMoveClient implementation:
44 44
45 aura::client::WindowMoveResult X11DesktopWindowMoveClient::RunMoveLoop( 45 aura::client::WindowMoveResult X11DesktopWindowMoveClient::RunMoveLoop(
46 aura::Window* source, 46 aura::Window* source,
47 const gfx::Vector2d& drag_offset, 47 const gfx::Vector2d& drag_offset,
48 aura::client::WindowMoveSource move_source) { 48 aura::client::WindowMoveSource move_source) {
49 window_offset_ = drag_offset; 49 window_offset_ = drag_offset;
50 host_ = source->GetHost(); 50 host_ = source->GetHost();
51 51
52 source->SetCapture(); 52 source->SetCapture();
53 bool success = move_loop_.RunMoveLoop(source, host_->last_cursor()); 53 bool success = move_loop_.RunMoveLoop(source);
54 return success ? aura::client::MOVE_SUCCESSFUL : aura::client::MOVE_CANCELED; 54 return success ? aura::client::MOVE_SUCCESSFUL : aura::client::MOVE_CANCELED;
55 } 55 }
56 56
57 void X11DesktopWindowMoveClient::EndMoveLoop() { 57 void X11DesktopWindowMoveClient::EndMoveLoop() {
58 move_loop_.EndMoveLoop(); 58 move_loop_.EndMoveLoop();
59 } 59 }
60 60
61 } // namespace views 61 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698