blob: 540d733e9e8a8c6b6c8c44262e218416a828ae9d [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_CROSTINI_CROSTINI_PACKAGE_OPERATION_STATUS_H_
#define CHROME_BROWSER_ASH_CROSTINI_CROSTINI_PACKAGE_OPERATION_STATUS_H_
#include <ostream>
namespace crostini {
// Status of an operation in CrostiniPackageService &
// CrostiniPackageNotification.
enum class PackageOperationStatus {
QUEUED,
SUCCEEDED,
FAILED,
RUNNING,
WAITING_FOR_APP_REGISTRY_UPDATE
};
} // namespace crostini
#endif // CHROME_BROWSER_ASH_CROSTINI_CROSTINI_PACKAGE_OPERATION_STATUS_H_