Chromium Code Reviews| Index: extensions/browser/kiosk/kiosk_delegate.h |
| diff --git a/extensions/browser/kiosk/kiosk_delegate.h b/extensions/browser/kiosk/kiosk_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b8d47f14c3bd452cba15664f1b71ec10601d5f7a |
| --- /dev/null |
| +++ b/extensions/browser/kiosk/kiosk_delegate.h |
| @@ -0,0 +1,28 @@ |
| +// 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. |
| + |
| +#ifndef EXTENSIONS_BROWSER_KIOSK_KIOSK_DELEGATE_H_ |
| +#define EXTENSIONS_BROWSER_KIOSK_KIOSK_DELEGATE_H_ |
| + |
| +#include "extensions/common/extension_id.h" |
| + |
| +namespace extensions { |
| + |
| +// Delegate to provide various Kiosk mode functionality. At some point, we'll |
| +// have the KioskAppManager outside of Chrome. We can then directly use it as |
| +// a delegate but till then, this is class is mostly a wrapper to it. |
|
asargent_no_longer_on_chrome
2016/09/28 19:58:15
typo: "this is class" -> "this class"
Rahul Chaturvedi
2016/09/28 20:26:47
Done.
|
| +// Note: Kiosk mode is not supported on other platforms but this delegate |
| +// needs to exist since on AppShell, KioskMode will exist on multiple |
| +// platforms. |
| +class KioskDelegate { |
| + public: |
| + KioskDelegate(); |
| + virtual ~KioskDelegate(); |
| + |
| + virtual bool IsAutoLaunchedKioskApp(const ExtensionId& id) const = 0; |
| +}; |
| + |
| +} // namespace extensions |
| + |
| +#endif // EXTENSIONS_BROWSER_KIOSK_KIOSK_DELEGATE_H_ |