Index: ui/views/bubble/tray_bubble_view.h |
diff --git a/ui/views/bubble/tray_bubble_view.h b/ui/views/bubble/tray_bubble_view.h |
index ce396c9054807e5cbf44f8d220f40e55ff02f994..93fde7af259485bcfbc7cf366af2b5ffd7efdfa0 100644 |
--- a/ui/views/bubble/tray_bubble_view.h |
+++ b/ui/views/bubble/tray_bubble_view.h |
@@ -8,6 +8,7 @@ |
#include <memory> |
#include "base/macros.h" |
+#include "base/optional.h" |
#include "ui/views/bubble/bubble_dialog_delegate.h" |
#include "ui/views/mouse_watcher.h" |
#include "ui/views/views_export.h" |
@@ -83,7 +84,8 @@ class VIEWS_EXPORT TrayBubbleView : public BubbleDialogDelegateView, |
int max_height; |
bool can_activate; |
bool close_on_deactivate; |
- SkColor bg_color; |
+ // If not provided, the bg color will be derived from the NativeTheme. |
+ base::Optional<SkColor> bg_color; |
}; |
// Constructs and returns a TrayBubbleView. |init_params| may be modified. |