| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "bindings/core/v8/ScriptWrappable.h" | 32 #include "bindings/core/v8/ScriptWrappable.h" |
| 33 #include "modules/webdatabase/sqlite/SQLValue.h" | 33 #include "modules/webdatabase/sqlite/SQLValue.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/Forward.h" | 35 #include "wtf/Forward.h" |
| 36 #include "wtf/RefCounted.h" | 36 #include "wtf/RefCounted.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class SQLResultSetRowList : public RefCountedWillBeGarbageCollectedFinalized<SQL
ResultSetRowList>, public ScriptWrappable { | 40 class SQLResultSetRowList : public RefCountedWillBeGarbageCollectedFinalized<SQL
ResultSetRowList>, public ScriptWrappable { |
| 41 DEFINE_WRAPPERTYPEINFO(); |
| 41 public: | 42 public: |
| 42 static PassRefPtrWillBeRawPtr<SQLResultSetRowList> create() { return adoptRe
fWillBeNoop(new SQLResultSetRowList); } | 43 static PassRefPtrWillBeRawPtr<SQLResultSetRowList> create() { return adoptRe
fWillBeNoop(new SQLResultSetRowList); } |
| 43 void trace(Visitor*) { } | 44 void trace(Visitor*) { } |
| 44 | 45 |
| 45 const Vector<String>& columnNames() const { return m_columns; } | 46 const Vector<String>& columnNames() const { return m_columns; } |
| 46 const Vector<SQLValue>& values() const { return m_result; } | 47 const Vector<SQLValue>& values() const { return m_result; } |
| 47 | 48 |
| 48 void addColumn(const String& name) { m_columns.append(name); } | 49 void addColumn(const String& name) { m_columns.append(name); } |
| 49 void addResult(const SQLValue& result) { m_result.append(result); } | 50 void addResult(const SQLValue& result) { m_result.append(result); } |
| 50 | 51 |
| 51 unsigned length() const; | 52 unsigned length() const; |
| 52 | 53 |
| 53 private: | 54 private: |
| 54 SQLResultSetRowList() | 55 SQLResultSetRowList() |
| 55 { | 56 { |
| 56 ScriptWrappable::init(this); | 57 ScriptWrappable::init(this); |
| 57 } | 58 } |
| 58 | 59 |
| 59 Vector<String> m_columns; | 60 Vector<String> m_columns; |
| 60 Vector<SQLValue> m_result; | 61 Vector<SQLValue> m_result; |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 } | 64 } // namespace blink |
| 64 | 65 |
| 65 #endif | 66 #endif // SQLResultSetRowList_h |
| OLD | NEW |