| Index: chrome/browser/ui/views/page_info_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/page_info_bubble_view.cc b/chrome/browser/ui/views/page_info_bubble_view.cc
|
| index 6cc5cb7ab47e889915e8e6b4762235ad7b82b059..0b323584827bb79e8ed5bdb4ad25855b6912dc80 100644
|
| --- a/chrome/browser/ui/views/page_info_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/page_info_bubble_view.cc
|
| @@ -30,9 +30,6 @@
|
|
|
| namespace {
|
|
|
| -// TODO(msw): Get color from theme/window color.
|
| -const SkColor kColor = SK_ColorWHITE;
|
| -
|
| // Layout constants.
|
| const int kHGapToBorder = 11;
|
| const int kVerticalSectionPadding = 8;
|
| @@ -106,7 +103,7 @@ PageInfoBubbleView::PageInfoBubbleView(views::View* anchor_view,
|
| const GURL& url,
|
| const NavigationEntry::SSLStatus& ssl,
|
| bool show_history)
|
| - : BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_LEFT, kColor),
|
| + : BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_LEFT),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(model_(profile, url, ssl,
|
| show_history, this)),
|
| cert_id_(ssl.cert_id()),
|
|
|