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

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

Issue 17915004: IndexedDB: Remove uses of WebKit API types from back-end code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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_callbacks.cc
diff --git a/content/browser/indexed_db/indexed_db_callbacks.cc b/content/browser/indexed_db/indexed_db_callbacks.cc
index 8bcf80d0bacb391e8c7e8f1e1f699619c6c6044b..111d574d452c1a6ccf4e5c55d46e3f29c8564d79 100644
--- a/content/browser/indexed_db/indexed_db_callbacks.cc
+++ b/content/browser/indexed_db/indexed_db_callbacks.cc
@@ -7,14 +7,13 @@
#include <algorithm>
#include <vector>
+#include "content/browser/indexed_db/indexed_db_database_error.h"
#include "content/browser/indexed_db/indexed_db_metadata.h"
#include "content/browser/indexed_db/webidbdatabase_impl.h"
#include "content/common/indexed_db/indexed_db_messages.h"
#include "webkit/browser/quota/quota_manager.h"
-using WebKit::WebData;
using WebKit::WebIDBCallbacks;
-using WebKit::WebString;
namespace content {
@@ -32,7 +31,7 @@ IndexedDBCallbacksBase::IndexedDBCallbacksBase(
IndexedDBCallbacksBase::~IndexedDBCallbacksBase() {}
-void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) {
+void IndexedDBCallbacksBase::onError(const IndexedDBDatabaseError& error) {
dispatcher_host_->Send(new IndexedDBMsg_CallbacksError(
ipc_thread_id_, ipc_callbacks_id_, error.code(), error.message()));
}
« no previous file with comments | « content/browser/indexed_db/indexed_db_callbacks.h ('k') | content/browser/indexed_db/indexed_db_callbacks_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698