Index: ui/message_center/views/bounded_label.cc |
diff --git a/ui/message_center/views/bounded_label.cc b/ui/message_center/views/bounded_label.cc |
index 8d43f410204e15ea9bc1f6e3ff440649d6966ece..1b2412aa1b33d5f3a9b790ea6697f28a54514fe3 100644 |
--- a/ui/message_center/views/bounded_label.cc |
+++ b/ui/message_center/views/bounded_label.cc |
@@ -335,9 +335,9 @@ int BoundedLabel::GetHeightForWidth(int width) { |
label_->GetSizeForWidthAndLines(width, line_limit_).height() : 0; |
} |
-void BoundedLabel::Paint(gfx::Canvas* canvas) { |
+void BoundedLabel::Paint(gfx::Canvas* canvas, const views::CullSet& cull_set) { |
if (visible()) |
- label_->Paint(canvas); |
+ label_->Paint(canvas, cull_set); |
} |
bool BoundedLabel::HitTestRect(const gfx::Rect& rect) const { |