| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef SQLTransactionBackendSync_h | 32 #ifndef SQLTransactionBackendSync_h |
| 33 #define SQLTransactionBackendSync_h | 33 #define SQLTransactionBackendSync_h |
| 34 | 34 |
| 35 #include "heap/Handle.h" | |
| 36 #include "modules/webdatabase/DatabaseBasicTypes.h" | 35 #include "modules/webdatabase/DatabaseBasicTypes.h" |
| 36 #include "platform/heap/Handle.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 39 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace WebCore { | 42 namespace WebCore { |
| 43 | 43 |
| 44 class DatabaseSync; | 44 class DatabaseSync; |
| 45 class SQLResultSet; | 45 class SQLResultSet; |
| 46 class SQLTransactionClient; | 46 class SQLTransactionClient; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 76 bool m_modifiedDatabase; | 76 bool m_modifiedDatabase; |
| 77 OwnPtr<SQLTransactionClient> m_transactionClient; | 77 OwnPtr<SQLTransactionClient> m_transactionClient; |
| 78 OwnPtr<SQLiteTransaction> m_sqliteTransaction; | 78 OwnPtr<SQLiteTransaction> m_sqliteTransaction; |
| 79 | 79 |
| 80 friend class SQLTransactionSync; // FIXME: Remove this once the front-end ha
s been properly isolated. | 80 friend class SQLTransactionSync; // FIXME: Remove this once the front-end ha
s been properly isolated. |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 } // namespace WebCore | 83 } // namespace WebCore |
| 84 | 84 |
| 85 #endif // SQLTransactionBackendSync_h | 85 #endif // SQLTransactionBackendSync_h |
| OLD | NEW |