| Index: ui/views/bubble/bubble_border.cc
|
| diff --git a/ui/views/bubble/bubble_border.cc b/ui/views/bubble/bubble_border.cc
|
| index 0ea505798f52dd16f497795b0aa3aaf349f43e0f..e9cad29908291950f0218b624da5c763ec47edb3 100644
|
| --- a/ui/views/bubble/bubble_border.cc
|
| +++ b/ui/views/bubble/bubble_border.cc
|
| @@ -354,12 +354,6 @@ void BubbleBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
|
| if (border_->shadow() == BubbleBorder::NO_SHADOW_OPAQUE_BORDER)
|
| canvas->DrawColor(border_->background_color());
|
|
|
| - // Clip out the client bounds to prevent overlapping transparent widgets.
|
| - if (!border_->client_bounds().IsEmpty()) {
|
| - SkRect client_rect(gfx::RectToSkRect(border_->client_bounds()));
|
| - canvas->sk_canvas()->clipRect(client_rect, SkRegion::kDifference_Op);
|
| - }
|
| -
|
| // Fill the contents with a round-rect region to match the border images.
|
| SkPaint paint;
|
| paint.setAntiAlias(true);
|
|
|