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

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

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.cc
diff --git a/content/browser/indexed_db/indexed_db_database_error.cc b/content/browser/indexed_db/indexed_db_database_error.cc
deleted file mode 100644
index 05c0cb57846e7f1ea8c4e665230a4e484785d371..0000000000000000000000000000000000000000
--- a/content/browser/indexed_db/indexed_db_database_error.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2015 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.
-
-#include "content/browser/indexed_db/indexed_db_database_error.h"
-
-namespace content {
-
-IndexedDBDatabaseError::IndexedDBDatabaseError(uint16_t code) : code_(code) {}
-
-IndexedDBDatabaseError::IndexedDBDatabaseError() = default;
-
-IndexedDBDatabaseError::IndexedDBDatabaseError(uint16_t code,
- const char* message)
- : code_(code), message_(base::ASCIIToUTF16(message)) {}
-
-IndexedDBDatabaseError::IndexedDBDatabaseError(uint16_t code,
- const base::string16& message)
- : code_(code), message_(message) {}
-
-IndexedDBDatabaseError::~IndexedDBDatabaseError() = default;
-
-IndexedDBDatabaseError& IndexedDBDatabaseError::operator=(
- const IndexedDBDatabaseError& rhs) = default;
-
-} // namespace content
« no previous file with comments | « content/browser/indexed_db/indexed_db_database_error.h ('k') | content/browser/indexed_db/indexed_db_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698