summaryrefslogtreecommitdiffstats
path: root/ui/views
diff options
context:
space:
mode:
authorpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-12 23:43:43 +0000
committerpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-12 23:43:43 +0000
commit3790d4b4ded9c130169bd17a05776cd99e576193 (patch)
treeeac248dec6be105036838ac1286ef8ce3098839b /ui/views
parent2a61ef66c18a427d968c4c7454816a5aeaf91a7b (diff)
downloadchromium_src-3790d4b4ded9c130169bd17a05776cd99e576193.zip
chromium_src-3790d4b4ded9c130169bd17a05776cd99e576193.tar.gz
chromium_src-3790d4b4ded9c130169bd17a05776cd99e576193.tar.bz2
This CL fixes paint artifacts in immersive fullscreen as a result of calls to Widget::SchedulePaintInRect() not being rerouted to TopContainerView's layer.
BUG=247243 TEST=Manual, see bug Review URL: https://chromiumcodereview.appspot.com/16525002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views')
-rw-r--r--ui/views/widget/widget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/widget/widget.h b/ui/views/widget/widget.h
index a93427f..e3c4302 100644
--- a/ui/views/widget/widget.h
+++ b/ui/views/widget/widget.h
@@ -496,7 +496,7 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate,
// Adds the specified |rect| in client area coordinates to the rectangle to be
// redrawn.
- void SchedulePaintInRect(const gfx::Rect& rect);
+ virtual void SchedulePaintInRect(const gfx::Rect& rect);
// Sets the currently visible cursor. If |cursor| is NULL, the cursor used
// before the current is restored.