| 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 15 matching lines...) Expand all Loading... |
| 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 SQLStatement_h | 28 #ifndef SQLStatement_h |
| 29 #define SQLStatement_h | 29 #define SQLStatement_h |
| 30 | 30 |
| 31 #include "modules/webdatabase/sqlite/SQLValue.h" | 31 #include "modules/webdatabase/sqlite/SQLValue.h" |
| 32 #include "modules/webdatabase/AbstractSQLStatement.h" | 32 #include "modules/webdatabase/AbstractSQLStatement.h" |
| 33 #include "modules/webdatabase/SQLCallbackWrapper.h" | 33 #include "modules/webdatabase/SQLCallbackWrapper.h" |
| 34 #include "modules/webdatabase/SQLResultSet.h" | 34 #include "modules/webdatabase/SQLResultSet.h" |
| 35 #include "wtf/Forward.h" | 35 #include "wtf/Forward.h" |
| 36 #include "wtf/Vector.h" | |
| 37 #include "wtf/text/WTFString.h" | 36 #include "wtf/text/WTFString.h" |
| 38 | 37 |
| 39 namespace blink { | 38 namespace blink { |
| 40 | 39 |
| 41 class AbstractSQLStatementBackend; | 40 class AbstractSQLStatementBackend; |
| 42 class Database; | 41 class Database; |
| 43 class SQLError; | 42 class SQLError; |
| 44 class SQLStatementCallback; | 43 class SQLStatementCallback; |
| 45 class SQLStatementErrorCallback; | 44 class SQLStatementErrorCallback; |
| 46 class SQLTransaction; | 45 class SQLTransaction; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 66 // to the backend using a raw pointer here. | 65 // to the backend using a raw pointer here. |
| 67 RawPtrWillBeMember<AbstractSQLStatementBackend> m_backend; | 66 RawPtrWillBeMember<AbstractSQLStatementBackend> m_backend; |
| 68 | 67 |
| 69 SQLCallbackWrapper<SQLStatementCallback> m_statementCallbackWrapper; | 68 SQLCallbackWrapper<SQLStatementCallback> m_statementCallbackWrapper; |
| 70 SQLCallbackWrapper<SQLStatementErrorCallback> m_statementErrorCallbackWrappe
r; | 69 SQLCallbackWrapper<SQLStatementErrorCallback> m_statementErrorCallbackWrappe
r; |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 } // namespace blink | 72 } // namespace blink |
| 74 | 73 |
| 75 #endif // SQLStatement_h | 74 #endif // SQLStatement_h |
| OLD | NEW |