Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(934)

Unified Diff: content/browser/indexed_db/indexed_db_database_error.h

Issue 2320213004: Port IndexedDB open() and database callbacks to Mojo. (Closed)
Patch Set: Make DatabaseClient an associated interface. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_database_error.h
diff --git a/content/browser/indexed_db/indexed_db_database_error.h b/content/browser/indexed_db/indexed_db_database_error.h
deleted file mode 100644
index 6106f75b1d61e6e866229df91ad47f2ac016d89d..0000000000000000000000000000000000000000
--- a/content/browser/indexed_db/indexed_db_database_error.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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"
-
-namespace content {
-
-class IndexedDBDatabaseError {
- public:
- IndexedDBDatabaseError();
- explicit IndexedDBDatabaseError(uint16_t code);
- IndexedDBDatabaseError(uint16_t code, const char* message);
- IndexedDBDatabaseError(uint16_t code, const base::string16& message);
- ~IndexedDBDatabaseError();
-
- IndexedDBDatabaseError& operator=(const IndexedDBDatabaseError& rhs);
-
- uint16_t code() const { return code_; }
- const base::string16& message() const { return message_; }
-
- private:
- uint16_t code_ = 0;
- base::string16 message_;
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_ERROR_H_
« no previous file with comments | « content/browser/indexed_db/indexed_db_database_callbacks.cc ('k') | content/browser/indexed_db/indexed_db_database_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698