diff options
author | lionel.g.landwerlin <lionel.g.landwerlin@intel.com> | 2014-11-26 02:56:42 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-26 10:57:15 +0000 |
commit | 17549a260485cec22652b3edb4f8a63f35769fa4 (patch) | |
tree | b7d1c7dcc0b12bb21792c6a859467b14cdfcfbbf /ui/aura/window_tree_host_ozone.h | |
parent | 214620e444390c1442a62d79499a82562ebe492d (diff) | |
download | chromium_src-17549a260485cec22652b3edb4f8a63f35769fa4.zip chromium_src-17549a260485cec22652b3edb4f8a63f35769fa4.tar.gz chromium_src-17549a260485cec22652b3edb4f8a63f35769fa4.tar.bz2 |
ozone: don't resend cursor bitmaps for every cursor movement
TEST=none
BUG=436433
Review URL: https://codereview.chromium.org/758883003
Cr-Commit-Position: refs/heads/master@{#305797}
Diffstat (limited to 'ui/aura/window_tree_host_ozone.h')
-rw-r--r-- | ui/aura/window_tree_host_ozone.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/aura/window_tree_host_ozone.h b/ui/aura/window_tree_host_ozone.h index 52d7ca8..296b14f 100644 --- a/ui/aura/window_tree_host_ozone.h +++ b/ui/aura/window_tree_host_ozone.h @@ -60,6 +60,9 @@ class AURA_EXPORT WindowTreeHostOzone : public WindowTreeHost, // The identifier used to create a compositing surface. gfx::AcceleratedWidget widget_; + // Current Aura cursor. + gfx::NativeCursor current_cursor_; + DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); }; |