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

Unified Diff: content/browser/indexed_db/indexed_db_database_callbacks_wrapper.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: Fix namespace issues 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_wrapper.h
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.h b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.h
index ac22234afd65f2a6374313b1feca472ac4b10db8..7683123a0cad57acfc23d5610e3b37edccbea02e 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.h
+++ b/content/browser/indexed_db/indexed_db_database_callbacks_wrapper.h
@@ -11,15 +11,15 @@
#include "base/string16.h"
#include "content/browser/indexed_db/indexed_db_database_error.h"
#include "content/common/content_export.h"
-#include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
namespace content {
+class IndexedDBDatabaseCallbacks;
class CONTENT_EXPORT IndexedDBDatabaseCallbacksWrapper
: public base::RefCounted<IndexedDBDatabaseCallbacksWrapper> {
public:
static scoped_refptr<IndexedDBDatabaseCallbacksWrapper> Create(
- WebKit::WebIDBDatabaseCallbacks* callbacks) {
+ IndexedDBDatabaseCallbacks* callbacks) {
return make_scoped_refptr(new IndexedDBDatabaseCallbacksWrapper(callbacks));
}
@@ -32,13 +32,13 @@ class CONTENT_EXPORT IndexedDBDatabaseCallbacksWrapper
protected:
explicit IndexedDBDatabaseCallbacksWrapper(
- WebKit::WebIDBDatabaseCallbacks* callbacks);
+ IndexedDBDatabaseCallbacks* callbacks);
virtual ~IndexedDBDatabaseCallbacksWrapper();
private:
friend class base::RefCounted<IndexedDBDatabaseCallbacksWrapper>;
- scoped_ptr<WebKit::WebIDBDatabaseCallbacks> callbacks_;
+ scoped_ptr<IndexedDBDatabaseCallbacks> callbacks_;
};
} // namespace content
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.h ('k') | content/browser/indexed_db/indexed_db_database_callbacks_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698