| Index: ash/system/tray/tray_details_view.cc
|
| diff --git a/ash/system/tray/tray_details_view.cc b/ash/system/tray/tray_details_view.cc
|
| index 4e74bd652d91bcf413f0e2e3937125e5dc02641c..6a9f4157062df32a2303c941112572bf40350714 100644
|
| --- a/ash/system/tray/tray_details_view.cc
|
| +++ b/ash/system/tray/tray_details_view.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "ash/system/tray/tray_details_view.h"
|
|
|
| +#include "ash/system/tray/system_tray_item.h"
|
| #include "ash/system/tray/tray_constants.h"
|
| #include "ash/system/tray/tray_views.h"
|
| #include "ui/gfx/canvas.h"
|
| @@ -39,8 +40,9 @@ class ScrollBorder : public views::Border {
|
| DISALLOW_COPY_AND_ASSIGN(ScrollBorder);
|
| };
|
|
|
| -TrayDetailsView::TrayDetailsView()
|
| - : footer_(NULL),
|
| +TrayDetailsView::TrayDetailsView(SystemTrayItem* owner)
|
| + : owner_(owner),
|
| + footer_(NULL),
|
| scroller_(NULL),
|
| scroll_content_(NULL),
|
| scroll_border_(NULL) {
|
|
|