| 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 29 matching lines...) Expand all Loading... |
| 40 #include "modules/webdatabase/DatabaseCallback.h" | 40 #include "modules/webdatabase/DatabaseCallback.h" |
| 41 #include "modules/webdatabase/DatabaseContext.h" | 41 #include "modules/webdatabase/DatabaseContext.h" |
| 42 #include "modules/webdatabase/DatabaseManager.h" | 42 #include "modules/webdatabase/DatabaseManager.h" |
| 43 #include "modules/webdatabase/DatabaseTask.h" | 43 #include "modules/webdatabase/DatabaseTask.h" |
| 44 #include "modules/webdatabase/DatabaseThread.h" | 44 #include "modules/webdatabase/DatabaseThread.h" |
| 45 #include "modules/webdatabase/DatabaseTracker.h" | 45 #include "modules/webdatabase/DatabaseTracker.h" |
| 46 #include "modules/webdatabase/SQLError.h" | 46 #include "modules/webdatabase/SQLError.h" |
| 47 #include "modules/webdatabase/SQLTransaction.h" | 47 #include "modules/webdatabase/SQLTransaction.h" |
| 48 #include "modules/webdatabase/SQLTransactionCallback.h" | 48 #include "modules/webdatabase/SQLTransactionCallback.h" |
| 49 #include "modules/webdatabase/SQLTransactionErrorCallback.h" | 49 #include "modules/webdatabase/SQLTransactionErrorCallback.h" |
| 50 #include "weborigin/SecurityOrigin.h" | 50 #include "platform/weborigin/SecurityOrigin.h" |
| 51 #include "wtf/OwnPtr.h" | 51 #include "wtf/OwnPtr.h" |
| 52 #include "wtf/PassOwnPtr.h" | 52 #include "wtf/PassOwnPtr.h" |
| 53 #include "wtf/PassRefPtr.h" | 53 #include "wtf/PassRefPtr.h" |
| 54 #include "wtf/RefPtr.h" | 54 #include "wtf/RefPtr.h" |
| 55 #include "wtf/StdLibExtras.h" | 55 #include "wtf/StdLibExtras.h" |
| 56 #include "wtf/text/CString.h" | 56 #include "wtf/text/CString.h" |
| 57 | 57 |
| 58 namespace WebCore { | 58 namespace WebCore { |
| 59 | 59 |
| 60 PassRefPtr<Database> Database::create(ExecutionContext*, PassRefPtr<DatabaseBack
endBase> backend) | 60 PassRefPtr<Database> Database::create(ExecutionContext*, PassRefPtr<DatabaseBack
endBase> backend) |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); | 284 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr
rorCode); |
| 285 } | 285 } |
| 286 | 286 |
| 287 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) | 287 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode,
int sqliteErrorCode) |
| 288 { | 288 { |
| 289 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); | 289 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE
rrorCode); |
| 290 } | 290 } |
| 291 | 291 |
| 292 | 292 |
| 293 } // namespace WebCore | 293 } // namespace WebCore |
| OLD | NEW |