28 lines
		
	
	
	
		
			664 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
	
		
			664 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
|   | // Copyright (c) 2015 GitHub, Inc.
 | ||
|  | // Use of this source code is governed by the MIT license that can be
 | ||
|  | // found in the LICENSE file.
 | ||
|  | 
 | ||
|  | #include "browser/notification.h"
 | ||
|  | 
 | ||
|  | #include "browser/notification_delegate.h"
 | ||
|  | #include "browser/notification_presenter.h"
 | ||
|  | 
 | ||
|  | namespace brightray { | ||
|  | 
 | ||
|  | Notification::Notification(NotificationDelegate* delegate, | ||
|  |                            NotificationPresenter* presenter) | ||
|  |     : delegate_(delegate), | ||
|  |       presenter_(presenter), | ||
|  |       weak_factory_(this) { | ||
|  | } | ||
|  | 
 | ||
|  | Notification::~Notification() { | ||
|  |   delegate()->NotificationDestroyed(); | ||
|  | } | ||
|  | 
 | ||
|  | void Notification::Destroy() { | ||
|  |   presenter()->RemoveNotification(this); | ||
|  | } | ||
|  | 
 | ||
|  | }  // namespace brightray
 |