| Index: ui/views/bubble/bubble_border.cc
|
| diff --git a/ui/views/bubble/bubble_border.cc b/ui/views/bubble/bubble_border.cc
|
| index ae0bd89ca7847ed588ecc1e4d97f517f2a1b82a2..cbe770213efde8ab228a1ffb7f18c7dbb99f9542 100644
|
| --- a/ui/views/bubble/bubble_border.cc
|
| +++ b/ui/views/bubble/bubble_border.cc
|
| @@ -133,12 +133,12 @@ struct BubbleBorder::BorderImages {
|
| struct BubbleBorder::BorderImages*
|
| BubbleBorder::border_images_[SHADOW_COUNT] = { NULL };
|
|
|
| -BubbleBorder::BubbleBorder(ArrowLocation arrow_location, Shadow shadow)
|
| +BubbleBorder::BubbleBorder(ArrowLocation arrow, Shadow shadow, SkColor color)
|
| : override_arrow_offset_(0),
|
| - arrow_location_(arrow_location),
|
| + arrow_location_(arrow),
|
| paint_arrow_(true),
|
| alignment_(ALIGN_ARROW_TO_MID_ANCHOR),
|
| - background_color_(SK_ColorWHITE) {
|
| + background_color_(color) {
|
| DCHECK(shadow < SHADOW_COUNT);
|
| images_ = GetBorderImages(shadow);
|
|
|
|
|