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

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

Issue 16573003: Remove content/browser dependency on WebKit::WebIDBCallbacks and WebKit::WebIDBDatabaseCallbacks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/in_process_webkit/indexed_db_database_callbacks.h
diff --git a/content/browser/in_process_webkit/indexed_db_database_callbacks.h b/content/browser/in_process_webkit/indexed_db_database_callbacks.h
index 6fefcc625c0c182347ae85c697e7f6ecd35ed12f..b3a8ba893062f7009d742377d2286f3ff9bf96a5 100644
--- a/content/browser/in_process_webkit/indexed_db_database_callbacks.h
+++ b/content/browser/in_process_webkit/indexed_db_database_callbacks.h
@@ -6,12 +6,15 @@
#define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DATABASE_CALLBACKS_H_
#include "base/memory/ref_counted.h"
-#include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
+
+namespace WebKit {
+class WebIDBDatabaseError;
+}
namespace content {
class IndexedDBDispatcherHost;
-class IndexedDBDatabaseCallbacks : public WebKit::WebIDBDatabaseCallbacks {
+class IndexedDBDatabaseCallbacks {
public:
IndexedDBDatabaseCallbacks(IndexedDBDispatcherHost* dispatcher_host,
int ipc_thread_id,
@@ -20,8 +23,7 @@ class IndexedDBDatabaseCallbacks : public WebKit::WebIDBDatabaseCallbacks {
virtual ~IndexedDBDatabaseCallbacks();
virtual void onForcedClose();
- virtual void onVersionChange(long long old_version,
- long long new_version);
+ virtual void onVersionChange(long long old_version, long long new_version);
virtual void onAbort(long long host_transaction_id,
const WebKit::WebIDBDatabaseError&);
virtual void onComplete(long long host_transaction_id);

Powered by Google App Engine
This is Rietveld 408576698