| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 private: | 57 private: |
| 58 SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*); | 58 SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*); |
| 59 | 59 |
| 60 // The SQLStatementBackend owns the SQLStatement. Hence, the backend is | 60 // The SQLStatementBackend owns the SQLStatement. Hence, the backend is |
| 61 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer | 61 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer |
| 62 // to the backend using a raw pointer here. | 62 // to the backend using a raw pointer here. |
| 63 Member<SQLStatementBackend> m_backend; | 63 Member<SQLStatementBackend> m_backend; |
| 64 | 64 |
| 65 Member<SQLStatementCallback> m_statementCallback; | 65 Member<SQLStatementCallback> m_statementCallback; |
| 66 Member<SQLStatementErrorCallback> m_statementErrorCallback; | 66 Member<SQLStatementErrorCallback> m_statementErrorCallback; |
| 67 int m_asyncOperationId; | |
| 68 }; | 67 }; |
| 69 | 68 |
| 70 } // namespace blink | 69 } // namespace blink |
| 71 | 70 |
| 72 #endif // SQLStatement_h | 71 #endif // SQLStatement_h |
| OLD | NEW |