blob: c55f8a5670c1250da60cc303598d41dcb3c374b4 [file] [log] [blame]
// Copyright 2013 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_STATUS_CODE_H_
#define STORAGE_COMMON_QUOTA_QUOTA_STATUS_CODE_H_
#include "storage/common/storage_common_export.h"
#include "third_party/WebKit/public/platform/WebStorageQuotaError.h"
namespace storage {
enum QuotaStatusCode {
kQuotaStatusOk = 0,
kQuotaErrorNotSupported = blink::kWebStorageQuotaErrorNotSupported,
kQuotaErrorInvalidModification =
blink::kWebStorageQuotaErrorInvalidModification,
kQuotaErrorInvalidAccess = blink::kWebStorageQuotaErrorInvalidAccess,
kQuotaErrorAbort = blink::kWebStorageQuotaErrorAbort,
kQuotaStatusUnknown = -1,
kQuotaStatusLast = kQuotaErrorAbort,
};
STORAGE_COMMON_EXPORT const char* QuotaStatusCodeToString(
QuotaStatusCode status);
} // namespace storage
#endif // STORAGE_COMMON_QUOTA_QUOTA_STATUS_CODE_H_