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 13 matching lines...) Expand all Loading... |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #include "config.h" | 29 #include "config.h" |
30 | 30 |
31 #include "InspectorDatabaseAgent.h" | 31 #include "InspectorDatabaseAgent.h" |
32 | 32 |
33 #include "Database.h" | 33 #include "Database.h" |
34 #include "ExceptionCode.h" | |
35 #include "ExceptionCodePlaceholder.h" | |
36 #include "InspectorDatabaseResource.h" | 34 #include "InspectorDatabaseResource.h" |
37 #include "InspectorFrontend.h" | 35 #include "InspectorFrontend.h" |
38 #include "InspectorState.h" | 36 #include "InspectorState.h" |
39 #include "InspectorValues.h" | 37 #include "InspectorValues.h" |
40 #include "InstrumentingAgents.h" | 38 #include "InstrumentingAgents.h" |
41 #include "SQLError.h" | 39 #include "SQLError.h" |
42 #include "SQLResultSet.h" | 40 #include "SQLResultSet.h" |
43 #include "SQLResultSetRowList.h" | 41 #include "SQLResultSetRowList.h" |
44 #include "SQLStatementCallback.h" | 42 #include "SQLStatementCallback.h" |
45 #include "SQLStatementErrorCallback.h" | 43 #include "SQLStatementErrorCallback.h" |
46 #include "SQLTransaction.h" | 44 #include "SQLTransaction.h" |
47 #include "SQLTransactionCallback.h" | 45 #include "SQLTransactionCallback.h" |
48 #include "SQLTransactionErrorCallback.h" | 46 #include "SQLTransactionErrorCallback.h" |
49 #include "VoidCallback.h" | 47 #include "VoidCallback.h" |
| 48 #include "core/dom/ExceptionCode.h" |
| 49 #include "core/dom/ExceptionCodePlaceholder.h" |
50 #include "core/platform/sql/SQLValue.h" | 50 #include "core/platform/sql/SQLValue.h" |
51 | 51 |
52 #include <wtf/Vector.h> | 52 #include <wtf/Vector.h> |
53 | 53 |
54 typedef WebCore::InspectorBackendDispatcher::DatabaseCommandHandler::ExecuteSQLC
allback ExecuteSQLCallback; | 54 typedef WebCore::InspectorBackendDispatcher::DatabaseCommandHandler::ExecuteSQLC
allback ExecuteSQLCallback; |
55 | 55 |
56 namespace WebCore { | 56 namespace WebCore { |
57 | 57 |
58 namespace DatabaseAgentState { | 58 namespace DatabaseAgentState { |
59 static const char databaseAgentEnabled[] = "databaseAgentEnabled"; | 59 static const char databaseAgentEnabled[] = "databaseAgentEnabled"; |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 | 319 |
320 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) | 320 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) |
321 { | 321 { |
322 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); | 322 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); |
323 if (it == m_resources.end()) | 323 if (it == m_resources.end()) |
324 return 0; | 324 return 0; |
325 return it->value->database(); | 325 return it->value->database(); |
326 } | 326 } |
327 | 327 |
328 } // namespace WebCore | 328 } // namespace WebCore |
OLD | NEW |