Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: ui/views/bubble/bubble_delegate.cc

Issue 309713002: Fix bg color of bookmark bubble view (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: also give bubbles the correct bg color Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/bubble/bubble_delegate.cc
diff --git a/ui/views/bubble/bubble_delegate.cc b/ui/views/bubble/bubble_delegate.cc
index d2a53ec2387bc22581e526bff075c17c9f5a9f31..0b890eca5d0ff4ef21d8eaf1cc65f5d3a8076ced 100644
--- a/ui/views/bubble/bubble_delegate.cc
+++ b/ui/views/bubble/bubble_delegate.cc
@@ -278,7 +278,7 @@ gfx::Rect BubbleDelegateView::GetBubbleBounds() {
void BubbleDelegateView::UpdateColorsFromTheme(const ui::NativeTheme* theme) {
if (!color_explicitly_set_)
- color_ = theme->GetSystemColor(ui::NativeTheme::kColorId_WindowBackground);
+ color_ = theme->GetSystemColor(ui::NativeTheme::kColorId_DialogBackground);
set_background(Background::CreateSolidBackground(color()));
BubbleFrameView* frame_view = GetBubbleFrameView();
if (frame_view)
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698