blob: f2d3809094b6277e8c04cbd594d9ca3a651c92f6 [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 {
WebCredentialManagerNoError = 0,
WebCredentialManagerDisabledError,
WebCredentialManagerPendingRequestError,
WebCredentialManagerPasswordStoreUnavailableError,
WebCredentialManagerUnknownError,
WebCredentialManagerErrorLastType = WebCredentialManagerUnknownError,
};
} // namespace blink
#endif