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

Unified Diff: Source/modules/webdatabase/SQLResultSetRowList.h

Issue 972153002: [bindings] Remove custom binding usage in SQLResultSetRowList. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@test
Patch Set: Patch for landing Created 5 years, 10 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/bindings/modules/v8/v8.gypi ('k') | Source/modules/webdatabase/SQLResultSetRowList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLResultSetRowList.h
diff --git a/Source/modules/webdatabase/SQLResultSetRowList.h b/Source/modules/webdatabase/SQLResultSetRowList.h
index 5b29ae87ac7c7349da69c54cc2afb13a1f9629fc..90ade2d884cb04fb63fa30ebe2101c21491d1774 100644
--- a/Source/modules/webdatabase/SQLResultSetRowList.h
+++ b/Source/modules/webdatabase/SQLResultSetRowList.h
@@ -35,6 +35,9 @@
#include "wtf/Forward.h"
namespace blink {
+class ScriptValue;
+class ScriptState;
+class ExceptionState;
class SQLResultSetRowList : public GarbageCollectedFinalized<SQLResultSetRowList>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
@@ -49,6 +52,7 @@ public:
void addResult(const SQLValue& result) { m_result.append(result); }
unsigned length() const;
+ ScriptValue item(ScriptState*, unsigned index, ExceptionState&);
private:
SQLResultSetRowList() { }
« no previous file with comments | « Source/bindings/modules/v8/v8.gypi ('k') | Source/modules/webdatabase/SQLResultSetRowList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698