| Index: ash/system/user/user_view.cc
|
| diff --git a/ash/system/user/user_view.cc b/ash/system/user/user_view.cc
|
| index 6707686419e4cfc64ecea04d5ddbaf6c6a470f5f..289da2837ef76e32112f873d766a19c973713c57 100644
|
| --- a/ash/system/user/user_view.cc
|
| +++ b/ash/system/user/user_view.cc
|
| @@ -95,10 +95,11 @@ class LogoutButton : public TrayPopupLabelButton {
|
| virtual ~LogoutButton() {}
|
|
|
| private:
|
| - virtual void Paint(gfx::Canvas* canvas) OVERRIDE {
|
| + virtual void Paint(gfx::Canvas* canvas,
|
| + const views::CullSet& cull_set) OVERRIDE {
|
| // Just skip paint if this button used as a placeholder.
|
| if (!placeholder_)
|
| - TrayPopupLabelButton::Paint(canvas);
|
| + TrayPopupLabelButton::Paint(canvas, cull_set);
|
| }
|
|
|
| bool placeholder_;
|
|
|