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

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

Issue 9463003: aura-x11: Add custom web cursor support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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/aura/root_window.h" 5 #include "ui/aura/root_window.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 //////////////////////////////////////////////////////////////////////////////// 82 ////////////////////////////////////////////////////////////////////////////////
83 // RootWindow, public: 83 // RootWindow, public:
84 84
85 RootWindow::RootWindow(const gfx::Rect& initial_bounds) 85 RootWindow::RootWindow(const gfx::Rect& initial_bounds)
86 : Window(NULL), 86 : Window(NULL),
87 host_(aura::RootWindowHost::Create(initial_bounds)), 87 host_(aura::RootWindowHost::Create(initial_bounds)),
88 ALLOW_THIS_IN_INITIALIZER_LIST(schedule_paint_factory_(this)), 88 ALLOW_THIS_IN_INITIALIZER_LIST(schedule_paint_factory_(this)),
89 ALLOW_THIS_IN_INITIALIZER_LIST(event_factory_(this)), 89 ALLOW_THIS_IN_INITIALIZER_LIST(event_factory_(this)),
90 mouse_button_flags_(0), 90 mouse_button_flags_(0),
91 last_cursor_(kCursorNull), 91 last_cursor_(ui::kCursorNull),
92 cursor_shown_(true), 92 cursor_shown_(true),
93 capture_window_(NULL), 93 capture_window_(NULL),
94 mouse_pressed_handler_(NULL), 94 mouse_pressed_handler_(NULL),
95 mouse_moved_handler_(NULL), 95 mouse_moved_handler_(NULL),
96 focused_window_(NULL), 96 focused_window_(NULL),
97 ALLOW_THIS_IN_INITIALIZER_LIST( 97 ALLOW_THIS_IN_INITIALIZER_LIST(
98 gesture_recognizer_(GestureRecognizer::Create())), 98 gesture_recognizer_(GestureRecognizer::Create())),
99 synthesize_mouse_move_(false), 99 synthesize_mouse_move_(false),
100 waiting_on_compositing_end_(false), 100 waiting_on_compositing_end_(false),
101 draw_on_compositing_end_(false), 101 draw_on_compositing_end_(false),
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 void RootWindow::UnlockCompositor() { 868 void RootWindow::UnlockCompositor() {
869 DCHECK(compositor_lock_); 869 DCHECK(compositor_lock_);
870 compositor_lock_ = NULL; 870 compositor_lock_ = NULL;
871 if (draw_on_compositor_unlock_) { 871 if (draw_on_compositor_unlock_) {
872 draw_on_compositor_unlock_ = false; 872 draw_on_compositor_unlock_ = false;
873 ScheduleDraw(); 873 ScheduleDraw();
874 } 874 }
875 } 875 }
876 876
877 } // namespace aura 877 } // namespace aura
OLDNEW
« ui/aura/root_window.h ('K') | « ui/aura/root_window.h ('k') | ui/aura/root_window_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698