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

Unified Diff: Source/modules/indexeddb/IDBCallbacks.h

Issue 14267029: Prepare to eliminate WebDOMStringList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix names duplication in conversion Created 7 years, 8 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
« no previous file with comments | « Source/WebKit/chromium/tests/IDBRequestTest.cpp ('k') | Source/modules/indexeddb/IDBFactoryBackendImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBCallbacks.h
diff --git a/Source/modules/indexeddb/IDBCallbacks.h b/Source/modules/indexeddb/IDBCallbacks.h
index d45d08ed1b42511c1fbdf4abfe8a8471acf5688b..ae5c9ba5228e7857948c3d99ed31ae597ae38935 100644
--- a/Source/modules/indexeddb/IDBCallbacks.h
+++ b/Source/modules/indexeddb/IDBCallbacks.h
@@ -37,7 +37,6 @@
#include <wtf/RefCounted.h>
namespace WebCore {
-class DOMStringList;
class IDBCursorBackendInterface;
class IDBCallbacks : public RefCounted<IDBCallbacks> {
@@ -46,7 +45,7 @@ public:
virtual void onError(PassRefPtr<IDBDatabaseError>) = 0;
// From IDBFactory.webkitGetDatabaseNames()
- virtual void onSuccess(PassRefPtr<DOMStringList>) = 0;
+ virtual void onSuccess(const Vector<String>&) = 0;
// From IDBObjectStore/IDBIndex.openCursor(), IDBIndex.openKeyCursor()
virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>, PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>) = 0;
// From IDBObjectStore.add()/put(), IDBIndex.getKey()
« no previous file with comments | « Source/WebKit/chromium/tests/IDBRequestTest.cpp ('k') | Source/modules/indexeddb/IDBFactoryBackendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698