| 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 20 matching lines...) Expand all Loading... |
| 31 #include "core/inspector/InspectorInstrumentation.h" | 31 #include "core/inspector/InspectorInstrumentation.h" |
| 32 #include "modules/webdatabase/Database.h" | 32 #include "modules/webdatabase/Database.h" |
| 33 #include "modules/webdatabase/DatabaseManager.h" | 33 #include "modules/webdatabase/DatabaseManager.h" |
| 34 #include "modules/webdatabase/SQLError.h" | 34 #include "modules/webdatabase/SQLError.h" |
| 35 #include "modules/webdatabase/SQLStatementBackend.h" | 35 #include "modules/webdatabase/SQLStatementBackend.h" |
| 36 #include "modules/webdatabase/SQLStatementCallback.h" | 36 #include "modules/webdatabase/SQLStatementCallback.h" |
| 37 #include "modules/webdatabase/SQLStatementErrorCallback.h" | 37 #include "modules/webdatabase/SQLStatementErrorCallback.h" |
| 38 #include "modules/webdatabase/SQLTransaction.h" | 38 #include "modules/webdatabase/SQLTransaction.h" |
| 39 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" | 39 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" |
| 40 #include "modules/webdatabase/sqlite/SQLiteStatement.h" | 40 #include "modules/webdatabase/sqlite/SQLiteStatement.h" |
| 41 #include "platform/Logging.h" | |
| 42 #include "wtf/text/CString.h" | 41 #include "wtf/text/CString.h" |
| 43 | 42 |
| 44 namespace blink { | 43 namespace blink { |
| 45 | 44 |
| 46 SQLStatement* SQLStatement::create(Database* database, | 45 SQLStatement* SQLStatement::create(Database* database, |
| 47 SQLStatementCallback* callback, SQLStatementErrorCallback* errorCallback) | 46 SQLStatementCallback* callback, SQLStatementErrorCallback* errorCallback) |
| 48 { | 47 { |
| 49 return new SQLStatement(database, callback, errorCallback); | 48 return new SQLStatement(database, callback, errorCallback); |
| 50 } | 49 } |
| 51 | 50 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 if (errorCallback) | 100 if (errorCallback) |
| 102 callbackError = errorCallback->handleEvent(transaction, SQLError::cr
eate(*error)); | 101 callbackError = errorCallback->handleEvent(transaction, SQLError::cr
eate(*error)); |
| 103 } else if (callback) { | 102 } else if (callback) { |
| 104 callbackError = !callback->handleEvent(transaction, m_backend->sqlResult
Set()); | 103 callbackError = !callback->handleEvent(transaction, m_backend->sqlResult
Set()); |
| 105 } | 104 } |
| 106 | 105 |
| 107 return callbackError; | 106 return callbackError; |
| 108 } | 107 } |
| 109 | 108 |
| 110 } // namespace blink | 109 } // namespace blink |
| OLD | NEW |