| 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 20 matching lines...) Expand all  Loading... | 
| 31 | 31 | 
| 32 #include "InspectorFrontend.h" | 32 #include "InspectorFrontend.h" | 
| 33 #include "bindings/v8/ExceptionStatePlaceholder.h" | 33 #include "bindings/v8/ExceptionStatePlaceholder.h" | 
| 34 #include "core/html/VoidCallback.h" | 34 #include "core/html/VoidCallback.h" | 
| 35 #include "core/inspector/InspectorDatabaseResource.h" | 35 #include "core/inspector/InspectorDatabaseResource.h" | 
| 36 #include "core/inspector/InspectorState.h" | 36 #include "core/inspector/InspectorState.h" | 
| 37 #include "core/inspector/InstrumentingAgents.h" | 37 #include "core/inspector/InstrumentingAgents.h" | 
| 38 #include "core/loader/DocumentLoader.h" | 38 #include "core/loader/DocumentLoader.h" | 
| 39 #include "core/page/Frame.h" | 39 #include "core/page/Frame.h" | 
| 40 #include "core/page/Page.h" | 40 #include "core/page/Page.h" | 
| 41 #include "core/platform/sql/SQLValue.h" |  | 
| 42 #include "modules/webdatabase/Database.h" | 41 #include "modules/webdatabase/Database.h" | 
| 43 #include "modules/webdatabase/SQLError.h" | 42 #include "modules/webdatabase/SQLError.h" | 
| 44 #include "modules/webdatabase/SQLResultSet.h" | 43 #include "modules/webdatabase/SQLResultSet.h" | 
| 45 #include "modules/webdatabase/SQLResultSetRowList.h" | 44 #include "modules/webdatabase/SQLResultSetRowList.h" | 
| 46 #include "modules/webdatabase/SQLStatementCallback.h" | 45 #include "modules/webdatabase/SQLStatementCallback.h" | 
| 47 #include "modules/webdatabase/SQLStatementErrorCallback.h" | 46 #include "modules/webdatabase/SQLStatementErrorCallback.h" | 
| 48 #include "modules/webdatabase/SQLTransaction.h" | 47 #include "modules/webdatabase/SQLTransaction.h" | 
| 49 #include "modules/webdatabase/SQLTransactionCallback.h" | 48 #include "modules/webdatabase/SQLTransactionCallback.h" | 
| 50 #include "modules/webdatabase/SQLTransactionErrorCallback.h" | 49 #include "modules/webdatabase/SQLTransactionErrorCallback.h" | 
|  | 50 #include "modules/webdatabase/sqlite/SQLValue.h" | 
| 51 #include "platform/JSONValues.h" | 51 #include "platform/JSONValues.h" | 
| 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"; | 
| 60 }; | 60 }; | 
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 323 | 323 | 
| 324 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) | 324 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) | 
| 325 { | 325 { | 
| 326     DatabaseResourcesMap::iterator it = m_resources.find(databaseId); | 326     DatabaseResourcesMap::iterator it = m_resources.find(databaseId); | 
| 327     if (it == m_resources.end()) | 327     if (it == m_resources.end()) | 
| 328         return 0; | 328         return 0; | 
| 329     return it->value->database(); | 329     return it->value->database(); | 
| 330 } | 330 } | 
| 331 | 331 | 
| 332 } // namespace WebCore | 332 } // namespace WebCore | 
| OLD | NEW | 
|---|