blob: 035209b4263df876dff1ffa2b01fdc8f09e179dc [file] [log] [blame]
// Copyright (c) 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 CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_ERROR_H_
#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_ERROR_H_
#include <stdint.h>
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
#include "content/common/content_export.h"
namespace content {
class CONTENT_EXPORT IndexedDBDatabaseError {
// TODO(dmurph): Move the WebIDBDatabaseException enum into mojo, and make
// the |code| type the mojo enum type.
public:
IndexedDBDatabaseError();
explicit IndexedDBDatabaseError(int32_t code);
IndexedDBDatabaseError(int32_t code, const char* message);
IndexedDBDatabaseError(int32_t code, const base::string16& message);
~IndexedDBDatabaseError();
IndexedDBDatabaseError& operator=(const IndexedDBDatabaseError& rhs);
int32_t code() const { return code_; }
const base::string16& message() const { return message_; }
private:
int32_t code_ = 0;
base::string16 message_;
};
} // namespace content
#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_ERROR_H_