blob: 4ee2452b10ff15388ad91b0607ef3791fd7d600c [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.
module blink.mojom;
enum StorageType {
kTemporary,
kPersistent,
kSyncable,
kQuotaNotManaged,
kUnknown,
};
// These values need to match dom/ExceptionState.h.
enum QuotaStatusCode {
kOk = 0,
kErrorNotSupported = 7,
kErrorInvalidModification = 11,
kErrorInvalidAccess = 13,
kErrorAbort = 17,
kUnknown = -1,
};