1 // Copyright 2020 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CHROME_BROWSER_CHROMEOS_WEB_APPLICATIONS_CAMERA_SYSTEM_WEB_APP_INFO_H_
6 #define CHROME_BROWSER_CHROMEOS_WEB_APPLICATIONS_CAMERA_SYSTEM_WEB_APP_INFO_H_
7 
8 #include <memory>
9 
10 struct WebApplicationInfo;
11 
12 // Return a WebApplicationInfo used to install the app.
13 std::unique_ptr<WebApplicationInfo> CreateWebAppInfoForCameraSystemWebApp();
14 
15 #endif  // CHROME_BROWSER_CHROMEOS_WEB_APPLICATIONS_CAMERA_SYSTEM_WEB_APP_INFO_H_
16