// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_WEBAPPS_BROWSER_INSTALLABLE_INSTALLABLE_PARAMS_H_ #define COMPONENTS_WEBAPPS_BROWSER_INSTALLABLE_INSTALLABLE_PARAMS_H_ namespace webapps { enum class InstallableCriteria { … }; // This struct specifies the work to be done by the InstallableManager. // Data is cached and fetched in the order specified in this struct. // Processing halts immediately upon the first error unless |is_debug_mode| is // true, otherwise, all tasks will be run and a complete list of errors will be // returned. struct InstallableParams { … }; } // namespace webapps #endif // COMPONENTS_WEBAPPS_BROWSER_INSTALLABLE_INSTALLABLE_PARAMS_H_