blob: 219714c45bec7564ddad5b52e58b130cfc59fa36 [file] [log] [blame]
// Copyright 2016 The Fuchsia 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 SRC_UI_LIB_ESCHER_STATUS_H_
#define SRC_UI_LIB_ESCHER_STATUS_H_
namespace escher {
enum class Status {
kOk,
kNotReady,
kTimeout,
kOutOfHostMemory,
kOutOfDeviceMemory,
kDeviceLost,
kInternalError // should not occur
};
} // namespace escher
#endif // SRC_UI_LIB_ESCHER_STATUS_H_