| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2013 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 12 matching lines...) Expand all Loading... |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 #ifndef SQLStatementBackend_h | 28 #ifndef SQLStatementBackend_h |
| 29 #define SQLStatementBackend_h | 29 #define SQLStatementBackend_h |
| 30 | 30 |
| 31 #include "modules/webdatabase/sqlite/SQLValue.h" | 31 #include "modules/webdatabase/sqlite/SQLValue.h" |
| 32 #include "platform/heap/Handle.h" | 32 #include "platform/heap/Handle.h" |
| 33 #include "wtf/Forward.h" | |
| 34 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
| 35 #include "wtf/text/WTFString.h" | |
| 36 | 34 |
| 37 namespace blink { | 35 namespace blink { |
| 38 | 36 |
| 39 class Database; | 37 class Database; |
| 40 class SQLErrorData; | 38 class SQLErrorData; |
| 41 class SQLResultSet; | 39 class SQLResultSet; |
| 42 class SQLStatement; | 40 class SQLStatement; |
| 43 class SQLTransactionBackend; | |
| 44 | 41 |
| 45 class SQLStatementBackend final : public GarbageCollectedFinalized<SQLStatementB
ackend> { | 42 class SQLStatementBackend final : public GarbageCollectedFinalized<SQLStatementB
ackend> { |
| 46 public: | 43 public: |
| 47 static SQLStatementBackend* create(SQLStatement*, | 44 static SQLStatementBackend* create(SQLStatement*, |
| 48 const String& sqlStatement, const Vector<SQLValue>& arguments, int permi
ssions); | 45 const String& sqlStatement, const Vector<SQLValue>& arguments, int permi
ssions); |
| 49 void trace(Visitor*); | 46 void trace(Visitor*); |
| 50 | 47 |
| 51 bool execute(Database*); | 48 bool execute(Database*); |
| 52 bool lastExecutionFailedDueToQuota() const; | 49 bool lastExecutionFailedDueToQuota() const; |
| 53 | 50 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 74 | 71 |
| 75 OwnPtr<SQLErrorData> m_error; | 72 OwnPtr<SQLErrorData> m_error; |
| 76 Member<SQLResultSet> m_resultSet; | 73 Member<SQLResultSet> m_resultSet; |
| 77 | 74 |
| 78 int m_permissions; | 75 int m_permissions; |
| 79 }; | 76 }; |
| 80 | 77 |
| 81 } // namespace blink | 78 } // namespace blink |
| 82 | 79 |
| 83 #endif // SQLStatementBackend_h | 80 #endif // SQLStatementBackend_h |
| OLD | NEW |