| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 virtual ~TransactionCallback() { } | 138 virtual ~TransactionCallback() { } |
| 139 | 139 |
| 140 virtual bool handleEvent(SQLTransaction* transaction) | 140 virtual bool handleEvent(SQLTransaction* transaction) |
| 141 { | 141 { |
| 142 if (!m_requestCallback->isActive()) | 142 if (!m_requestCallback->isActive()) |
| 143 return true; | 143 return true; |
| 144 | 144 |
| 145 Vector<SQLValue> sqlValues; | 145 Vector<SQLValue> sqlValues; |
| 146 RefPtr<SQLStatementCallback> callback(StatementCallback::create(m_reques
tCallback.get())); | 146 RefPtr<SQLStatementCallback> callback(StatementCallback::create(m_reques
tCallback.get())); |
| 147 RefPtr<SQLStatementErrorCallback> errorCallback(StatementErrorCallback::
create(m_requestCallback.get())); | 147 RefPtr<SQLStatementErrorCallback> errorCallback(StatementErrorCallback::
create(m_requestCallback.get())); |
| 148 transaction->executeSQL(m_sqlStatement, sqlValues, callback.release(), e
rrorCallback.release(), IGNORE_EXCEPTION_STATE); | 148 transaction->executeSQL(m_sqlStatement, sqlValues, callback.release(), e
rrorCallback.release(), IGNORE_EXCEPTION); |
| 149 return true; | 149 return true; |
| 150 } | 150 } |
| 151 private: | 151 private: |
| 152 TransactionCallback(const String& sqlStatement, PassRefPtr<ExecuteSQLCallbac
k> requestCallback) | 152 TransactionCallback(const String& sqlStatement, PassRefPtr<ExecuteSQLCallbac
k> requestCallback) |
| 153 : m_sqlStatement(sqlStatement) | 153 : m_sqlStatement(sqlStatement) |
| 154 , m_requestCallback(requestCallback) { } | 154 , m_requestCallback(requestCallback) { } |
| 155 String m_sqlStatement; | 155 String m_sqlStatement; |
| 156 RefPtr<ExecuteSQLCallback> m_requestCallback; | 156 RefPtr<ExecuteSQLCallback> m_requestCallback; |
| 157 }; | 157 }; |
| 158 | 158 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 322 |
| 323 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) | 323 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) |
| 324 { | 324 { |
| 325 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); | 325 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); |
| 326 if (it == m_resources.end()) | 326 if (it == m_resources.end()) |
| 327 return 0; | 327 return 0; |
| 328 return it->value->database(); | 328 return it->value->database(); |
| 329 } | 329 } |
| 330 | 330 |
| 331 } // namespace WebCore | 331 } // namespace WebCore |
| OLD | NEW |