| Index: ui/message_center/cocoa/tray_view_controller.h | 
| diff --git a/ui/message_center/cocoa/tray_view_controller.h b/ui/message_center/cocoa/tray_view_controller.h | 
| index d5f9f1f8876301d9a72e56feeaddafd33960915c..5d5b3af83e9ddea4c81e21e97203758c6b18b55b 100644 | 
| --- a/ui/message_center/cocoa/tray_view_controller.h | 
| +++ b/ui/message_center/cocoa/tray_view_controller.h | 
| @@ -46,6 +46,12 @@ MESSAGE_CENTER_EXPORT | 
| // The "Notifications" label at the top. | 
| base::scoped_nsobject<NSTextField> title_; | 
|  | 
| +  // The 1px horizontal divider between the scroll view and the title bar. | 
| +  base::scoped_nsobject<NSBox> divider_; | 
| + | 
| +  // The "Nothing to see here" label in an empty message center. | 
| +  base::scoped_nsobject<NSTextField> emptyDescription_; | 
| + | 
| // The scroll view that contains all the notifications in its documentView. | 
| base::scoped_nsobject<NSScrollView> scrollView_; | 
|  | 
| @@ -157,6 +163,8 @@ MESSAGE_CENTER_EXPORT | 
| // Testing API ///////////////////////////////////////////////////////////////// | 
|  | 
| @interface MCTrayViewController (TestingAPI) | 
| +- (NSBox*)divider; | 
| +- (NSTextField*)emptyDescription; | 
| - (NSScrollView*)scrollView; | 
| - (HoverImageButton*)pauseButton; | 
| - (HoverImageButton*)clearAllButton; | 
|  |