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 16 matching lines...) Expand all Loading... |
27 */ | 27 */ |
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/ScriptExecutionContext.h" | 34 #include "core/dom/ScriptExecutionContext.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 "core/platform/Logging.h" | 37 #include "platform/Logging.h" |
38 #include "core/platform/NotImplemented.h" | 38 #include "platform/NotImplemented.h" |
39 #include "core/platform/sql/SQLiteStatement.h" | 39 #include "core/platform/sql/SQLiteStatement.h" |
40 #include "modules/webdatabase/ChangeVersionData.h" | 40 #include "modules/webdatabase/ChangeVersionData.h" |
41 #include "modules/webdatabase/DatabaseBackendContext.h" | 41 #include "modules/webdatabase/DatabaseBackendContext.h" |
42 #include "modules/webdatabase/DatabaseCallback.h" | 42 #include "modules/webdatabase/DatabaseCallback.h" |
43 #include "modules/webdatabase/DatabaseContext.h" | 43 #include "modules/webdatabase/DatabaseContext.h" |
44 #include "modules/webdatabase/DatabaseManager.h" | 44 #include "modules/webdatabase/DatabaseManager.h" |
45 #include "modules/webdatabase/DatabaseTask.h" | 45 #include "modules/webdatabase/DatabaseTask.h" |
46 #include "modules/webdatabase/DatabaseThread.h" | 46 #include "modules/webdatabase/DatabaseThread.h" |
47 #include "modules/webdatabase/DatabaseTracker.h" | 47 #include "modules/webdatabase/DatabaseTracker.h" |
48 #include "modules/webdatabase/SQLError.h" | 48 #include "modules/webdatabase/SQLError.h" |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); | 286 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); |
287 } | 287 } |
288 | 288 |
289 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) | 289 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) |
290 { | 290 { |
291 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); | 291 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); |
292 } | 292 } |
293 | 293 |
294 | 294 |
295 } // namespace WebCore | 295 } // namespace WebCore |
OLD | NEW |