blob: 67d7791afb7f576eb838c9775cde5604012c9a1b [file] [log] [blame]
// Copyright 2017 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 STORAGE_COMMON_QUOTA_QUOTA_LIMIT_TYPE_H_
#define STORAGE_COMMON_QUOTA_QUOTA_LIMIT_TYPE_H_
namespace storage {
enum QuotaLimitType {
kQuotaLimitTypeUnknown,
kQuotaLimitTypeLimited,
kQuotaLimitTypeUnlimited,
kQuotaLimitTypeLast = kQuotaLimitTypeUnlimited
};
} // namespace storage
#endif // STORAGE_COMMON_QUOTA_QUOTA_LIMIT_TYPE_H_