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

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

Issue 16573003: Remove content/browser dependency on WebKit::WebIDBCallbacks and WebKit::WebIDBDatabaseCallbacks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove more #includes and forward declarations 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_wrapper.cc
diff --git a/content/browser/indexed_db/indexed_db_callbacks_wrapper.cc b/content/browser/indexed_db/indexed_db_callbacks_wrapper.cc
index eed0e84490b40baac6e686528da335bf19327738..b23387613e7f9353a760c99d0e4d55b2fcaa7986 100644
--- a/content/browser/indexed_db/indexed_db_callbacks_wrapper.cc
+++ b/content/browser/indexed_db/indexed_db_callbacks_wrapper.cc
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "content/browser/in_process_webkit/indexed_db_callbacks.h"
#include "content/browser/indexed_db/indexed_db_callbacks_wrapper.h"
-
#include "content/browser/indexed_db/indexed_db_cursor.h"
#include "content/browser/indexed_db/indexed_db_metadata.h"
#include "content/browser/indexed_db/webidbcursor_impl.h"
@@ -24,7 +24,7 @@ using WebKit::WebString;
using WebKit::WebVector;
IndexedDBCallbacksWrapper::IndexedDBCallbacksWrapper(
- WebKit::WebIDBCallbacks* callbacks)
+ IndexedDBCallbacksBase* callbacks)
: callbacks_(callbacks), did_complete_(false), did_create_proxy_(false) {}
IndexedDBCallbacksWrapper::~IndexedDBCallbacksWrapper() {}

Powered by Google App Engine
This is Rietveld 408576698