Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
		
			
				
	
	
		
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC All Rights Reserved.
 | 
						|
 *
 | 
						|
 * Use of this source code is governed by an MIT-style license that can be
 | 
						|
 * found in the LICENSE file at https://angular.io/license
 | 
						|
 */
 | 
						|
Zone.__load_patch('notification', (global: any, Zone: ZoneType, api: _ZonePrivate) => {
 | 
						|
  const Notification = global['Notification'];
 | 
						|
  if (!Notification || !Notification.prototype) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  const desc = Object.getOwnPropertyDescriptor(Notification.prototype, 'onerror');
 | 
						|
  if (!desc || !desc.configurable) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  api.patchOnProperties(Notification.prototype, null);
 | 
						|
});
 |