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

Unified Diff: Source/WebKit/chromium/src/IDBCallbacksProxy.h

Issue 14267029: Prepare to eliminate WebDOMStringList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/public/WebIDBFactory.h ('k') | Source/WebKit/chromium/src/IDBCallbacksProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/IDBCallbacksProxy.h
diff --git a/Source/WebKit/chromium/src/IDBCallbacksProxy.h b/Source/WebKit/chromium/src/IDBCallbacksProxy.h
index 5fc5753cfb7fd805c36c47a6c119d5a2f35d0fff..10d0f2b5cc906bcb2473a5e88e4c581b63444a10 100644
--- a/Source/WebKit/chromium/src/IDBCallbacksProxy.h
+++ b/Source/WebKit/chromium/src/IDBCallbacksProxy.h
@@ -29,6 +29,7 @@
#ifndef IDBCallbacksProxy_h
#define IDBCallbacksProxy_h
+#include "DOMStringList.h"
jsbell 2013/04/19 19:06:25 Why is this needed in this header?
alecflett 2013/04/19 20:12:35 Because it got removed from other headers.. it wil
#include "IDBCallbacks.h"
#include <wtf/PassOwnPtr.h>
#include <wtf/PassRefPtr.h>
@@ -45,7 +46,7 @@ public:
virtual ~IDBCallbacksProxy();
virtual void onError(PassRefPtr<WebCore::IDBDatabaseError>);
- virtual void onSuccess(PassRefPtr<WebCore::DOMStringList>);
+ virtual void onSuccess(const Vector<String>&);
virtual void onSuccess(PassRefPtr<WebCore::IDBCursorBackendInterface>, PassRefPtr<WebCore::IDBKey>, PassRefPtr<WebCore::IDBKey> primaryKey, PassRefPtr<WebCore::SharedBuffer>);
virtual void onSuccess(PassRefPtr<WebCore::IDBDatabaseBackendInterface>, const WebCore::IDBDatabaseMetadata&);
virtual void onSuccess(PassRefPtr<WebCore::IDBKey>);
« no previous file with comments | « Source/WebKit/chromium/public/WebIDBFactory.h ('k') | Source/WebKit/chromium/src/IDBCallbacksProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698