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

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

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_database_callbacks.h
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.h b/content/browser/indexed_db/indexed_db_database_callbacks.h
index fe3df30eb846e7f89e57650586abb2748fcc7a12..3a8b684b686c387de029cbb7aefd317d266daa42 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks.h
+++ b/content/browser/indexed_db/indexed_db_database_callbacks.h
@@ -7,11 +7,8 @@
#include "base/memory/ref_counted.h"
-namespace WebKit {
-class WebIDBDatabaseError;
-}
-
namespace content {
+class IndexedDBDatabaseError;
class IndexedDBDispatcherHost;
class IndexedDBDatabaseCallbacks {
@@ -25,7 +22,7 @@ class IndexedDBDatabaseCallbacks {
virtual void onForcedClose();
virtual void onVersionChange(long long old_version, long long new_version);
virtual void onAbort(long long host_transaction_id,
- const WebKit::WebIDBDatabaseError&);
+ const IndexedDBDatabaseError& error);
virtual void onComplete(long long host_transaction_id);
private:
« no previous file with comments | « content/browser/indexed_db/indexed_db_context_impl.cc ('k') | content/browser/indexed_db/indexed_db_database_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698