summaryrefslogtreecommitdiffstats
path: root/ui/aura/root_window_host_linux.cc
diff options
context:
space:
mode:
authorbacker@chromium.org <backer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-10 14:15:56 +0000
committerbacker@chromium.org <backer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-10 14:15:56 +0000
commit7df588fbddab01beecf3f996b41e917f4e81b5a9 (patch)
treefe964c1e1f493c4bc371f36263fee61a9203c205 /ui/aura/root_window_host_linux.cc
parent54f7cfb28db2e6d26c7a997b50187768adb4ffae (diff)
downloadchromium_src-7df588fbddab01beecf3f996b41e917f4e81b5a9.zip
chromium_src-7df588fbddab01beecf3f996b41e917f4e81b5a9.tar.gz
chromium_src-7df588fbddab01beecf3f996b41e917f4e81b5a9.tar.bz2
Plumb expose damage to compositor.
When running with --ui-enable-partial-swap, we need to plumb expose damage to the compositor damage tracker. BUG=111403 TEST=run an Aura build with --use-gl=osmesa --ui-enable-partial-swap; turn off compositing WM; move a window over top; see damage redrawn Review URL: http://codereview.chromium.org/9374022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/root_window_host_linux.cc')
-rw-r--r--ui/aura/root_window_host_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc
index b234623..0459ad9 100644
--- a/ui/aura/root_window_host_linux.cc
+++ b/ui/aura/root_window_host_linux.cc
@@ -400,7 +400,7 @@ base::MessagePumpDispatcher::DispatchStatus RootWindowHostLinux::Dispatch(
switch (xev->type) {
case Expose:
- root_window_->ScheduleDraw();
+ root_window_->ScheduleFullDraw();
handled = true;
break;
case KeyPress: {