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

Unified Diff: chrome/browser/ui/views/critical_notification_bubble_view.cc

Issue 8833004: Remove BubbleDelegateView ctor color arg, add simple setter/getter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pass set_color SkColor arg by value. Created 9 years 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
Index: chrome/browser/ui/views/critical_notification_bubble_view.cc
diff --git a/chrome/browser/ui/views/critical_notification_bubble_view.cc b/chrome/browser/ui/views/critical_notification_bubble_view.cc
index ae1f6130e9285fc3f8341d82674df18ce0c272c6..c8150c7e6f0c58deb3c28fe40e1e8efa2b2f9ce1 100644
--- a/chrome/browser/ui/views/critical_notification_bubble_view.cc
+++ b/chrome/browser/ui/views/critical_notification_bubble_view.cc
@@ -49,9 +49,7 @@ const int kRefreshBubbleEvery = 1000; // Millisecond.
CriticalNotificationBubbleView::CriticalNotificationBubbleView(
views::View* anchor_view)
- : BubbleDelegateView(anchor_view,
- views::BubbleBorder::TOP_RIGHT,
- SK_ColorWHITE) {
+ : BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_RIGHT) {
set_close_on_deactivate(false);
}

Powered by Google App Engine
This is Rietveld 408576698