blob: 637e2193f13bf99d587db600f92f3fb7100147a5 [file] [log] [blame]
// Copyright 2014 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 WebCredentialManagerError_h
#define WebCredentialManagerError_h
namespace blink {
// FIXME: This is a placeholder list of error conditions. We'll likely expand the
// list as the API evolves.
enum WebCredentialManagerError {
WebCredentialManagerDisabledError = 0,
WebCredentialManagerPendingRequestError,
WebCredentialManagerPasswordStoreUnavailableError,
WebCredentialManagerUnknownError,
WebCredentialManagerErrorLastType = WebCredentialManagerUnknownError,
};
} // namespace blink
#endif