* chore: bump chromium in DEPS to 461ecae368fd0832f18e0b13e61f3561d83f0031 * update patches * update patches * Remove both vs browser/child split in content gn files. https://chromium-review.googlesource.com/c/chromium/src/+/2157965 * chore: bump chromium in DEPS to 7ff3897f3104563763ef26ad940d4e988d7245dd * update patches * update patches * Add ElectronKioskDelegate for extensions https://chromium-review.googlesource.com/c/chromium/src/+/2159760 Co-authored-by: John Kleinschmidt <jkleinsc@github.com> Co-authored-by: Electron Bot <anonymous@electronjs.org>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			497 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			497 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2016 The Chromium Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#include "shell/browser/extensions/electron_kiosk_delegate.h"
 | 
						|
 | 
						|
namespace electron {
 | 
						|
 | 
						|
ElectronKioskDelegate::ElectronKioskDelegate() {}
 | 
						|
 | 
						|
ElectronKioskDelegate::~ElectronKioskDelegate() {}
 | 
						|
 | 
						|
bool ElectronKioskDelegate::IsAutoLaunchedKioskApp(
 | 
						|
    const extensions::ExtensionId& id) const {
 | 
						|
  return false;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace electron
 |