| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 #include "modules/webdatabase/Database.h" | 30 #include "modules/webdatabase/Database.h" |
| 31 | 31 |
| 32 #include "core/dom/CrossThreadTask.h" | 32 #include "core/dom/CrossThreadTask.h" |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
| 35 #include "core/html/VoidCallback.h" | 35 #include "core/html/VoidCallback.h" |
| 36 #include "core/page/Page.h" | 36 #include "core/page/Page.h" |
| 37 #include "platform/Logging.h" | 37 #include "platform/Logging.h" |
| 38 #include "platform/NotImplemented.h" | |
| 39 #include "modules/webdatabase/sqlite/SQLiteStatement.h" | 38 #include "modules/webdatabase/sqlite/SQLiteStatement.h" |
| 40 #include "modules/webdatabase/ChangeVersionData.h" | 39 #include "modules/webdatabase/ChangeVersionData.h" |
| 41 #include "modules/webdatabase/DatabaseCallback.h" | 40 #include "modules/webdatabase/DatabaseCallback.h" |
| 42 #include "modules/webdatabase/DatabaseContext.h" | 41 #include "modules/webdatabase/DatabaseContext.h" |
| 43 #include "modules/webdatabase/DatabaseManager.h" | 42 #include "modules/webdatabase/DatabaseManager.h" |
| 44 #include "modules/webdatabase/DatabaseTask.h" | 43 #include "modules/webdatabase/DatabaseTask.h" |
| 45 #include "modules/webdatabase/DatabaseThread.h" | 44 #include "modules/webdatabase/DatabaseThread.h" |
| 46 #include "modules/webdatabase/DatabaseTracker.h" | 45 #include "modules/webdatabase/DatabaseTracker.h" |
| 47 #include "modules/webdatabase/SQLError.h" | 46 #include "modules/webdatabase/SQLError.h" |
| 48 #include "modules/webdatabase/SQLTransaction.h" | 47 #include "modules/webdatabase/SQLTransaction.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); | 284 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); |
| 286 } | 285 } |
| 287 | 286 |
| 288 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) | 287 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) |
| 289 { | 288 { |
| 290 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); | 289 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); |
| 291 } | 290 } |
| 292 | 291 |
| 293 | 292 |
| 294 } // namespace WebCore | 293 } // namespace WebCore |
| OLD | NEW |