HomeSort by relevance Sort by last modified time
    Searched defs:cursor_client (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/ui/chromeos/
touch_exploration_controller.cc 9 #include "ui/aura/client/cursor_client.h"
418 aura::client::CursorClient* cursor_client = local
420 if (cursor_client && !cursor_client->IsMouseEventsEnabled())
421 cursor_client->EnableMouseEvents();
422 if (cursor_client && cursor_client->IsCursorVisible())
423 cursor_client->HideCursor();
touch_exploration_controller_unittest.cc 9 #include "ui/aura/client/cursor_client.h"
77 cursor_client()->ShowCursor();
78 cursor_client()->DisableMouseEvents();
89 aura::client::CursorClient* cursor_client() { return cursor_client_.get(); } function in class:ui::TouchExplorationTest
122 cursor_client()->ShowCursor();
123 cursor_client()->DisableMouseEvents();
135 aura::client::CursorClient* cursor_client = local
137 return cursor_client &&
138 cursor_client->IsMouseEventsEnabled() &&
139 !cursor_client->IsCursorVisible()
    [all...]
  /external/chromium_org/ash/wm/
toplevel_window_event_handler.cc 16 #include "ui/aura/client/cursor_client.h"
398 aura::client::CursorClient* cursor_client = local
400 if (cursor_client)
401 cursor_client->SetCursor(ui::kCursorPointer);
immersive_fullscreen_controller.cc 16 #include "ui/aura/client/cursor_client.h"
650 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( local
652 if (!cursor_client->IsMouseEventsEnabled()) {
    [all...]
  /external/chromium_org/ui/aura/
window_tree_host.cc 9 #include "ui/aura/client/cursor_client.h"
264 client::CursorClient* cursor_client = client::GetCursorClient(window()); local
265 if (cursor_client) {
268 cursor_client->SetDisplay(display);
window_event_dispatcher.cc 12 #include "ui/aura/client/cursor_client.h"
729 client::CursorClient* cursor_client = client::GetCursorClient(window()); local
733 if (cursor_client &&
734 !cursor_client->IsMouseEventsEnabled() &&
window_tree_host_x11.cc 27 #include "ui/aura/client/cursor_client.h"
343 client::CursorClient* cursor_client = local
345 if (cursor_client) {
348 cursor_client->SetDisplay(display);
window.cc 17 #include "ui/aura/client/cursor_client.h"
168 client::CursorClient* cursor_client = client::GetCursorClient(window_); local
169 if (cursor_is_in_bounds && cursor_client &&
170 cursor_client->IsCursorVisible()) {
171 cursor_client->HideCursor();
182 client::CursorClient* cursor_client = client::GetCursorClient(window_); local
183 if (cursor_client) {
187 cursor_client->SetDisplay(display);
188 cursor_client->ShowCursor();
    [all...]
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 18 #include "ui/aura/client/cursor_client.h"
375 aura::client::CursorClient* cursor_client = local
377 if (cursor_client) {
380 if (!cursor_client->IsCursorVisible())
382 cursor_client->DisableMouseEvents();
426 aura::client::CursorClient* cursor_client = local
428 if (cursor_client)
429 cursor_client->EnableMouseEvents();
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc 10 #include "ui/aura/client/cursor_client.h"
533 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( local
535 if (!cursor_client || cursor_client->IsMouseEventsEnabled())
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_widget_aura.cc 10 #include "ui/aura/client/cursor_client.h"
876 aura::client::CursorClient* cursor_client = local
878 if (cursor_client)
879 cursor_client->SetCursor(cursor);
885 aura::client::CursorClient* cursor_client =
887 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true;
    [all...]
desktop_window_tree_host_win.cc 11 #include "ui/aura/client/cursor_client.h"
152 aura::client::CursorClient* cursor_client = local
154 if (cursor_client)
155 is_cursor_visible_ = cursor_client->IsCursorVisible();
    [all...]
  /external/chromium_org/ui/views/widget/
native_widget_aura.cc 11 #include "ui/aura/client/cursor_client.h"
617 aura::client::CursorClient* cursor_client = local
619 if (cursor_client)
620 cursor_client->SetCursor(cursor);
626 aura::client::CursorClient* cursor_client =
628 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true;
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.cc 49 #include "ui/aura/client/cursor_client.h"
554 aura::client::CursorClient* cursor_client = local
556 if (cursor_client)
557 NotifyRendererOfCursorVisibilityState(cursor_client->IsCursorVisible());
920 aura::client::CursorClient* cursor_client =
922 if (cursor_client && !cursor_client->IsCursorVisible())
923 cursor_client->DisableMouseEvents();
1280 aura::client::CursorClient* cursor_client = local
1310 aura::client::CursorClient* cursor_client = local
1784 aura::client::CursorClient* cursor_client = local
2202 aura::client::CursorClient* cursor_client = local
2310 aura::client::CursorClient* cursor_client = local
2334 aura::client::CursorClient* cursor_client = local
    [all...]

Completed in 263 milliseconds