2020-04-24 01:55:17 +00:00
|
|
|
// 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 {
|
|
|
|
|
2021-06-04 04:16:13 +00:00
|
|
|
ElectronKioskDelegate::ElectronKioskDelegate() = default;
|
2020-04-24 01:55:17 +00:00
|
|
|
|
2021-06-04 04:16:13 +00:00
|
|
|
ElectronKioskDelegate::~ElectronKioskDelegate() = default;
|
2020-04-24 01:55:17 +00:00
|
|
|
|
|
|
|
bool ElectronKioskDelegate::IsAutoLaunchedKioskApp(
|
|
|
|
const extensions::ExtensionId& id) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|