| 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 28 matching lines...) Expand all Loading... |
| 39 #include "modules/webdatabase/InspectorDatabaseResource.h" | 39 #include "modules/webdatabase/InspectorDatabaseResource.h" |
| 40 #include "modules/webdatabase/SQLError.h" | 40 #include "modules/webdatabase/SQLError.h" |
| 41 #include "modules/webdatabase/SQLResultSet.h" | 41 #include "modules/webdatabase/SQLResultSet.h" |
| 42 #include "modules/webdatabase/SQLResultSetRowList.h" | 42 #include "modules/webdatabase/SQLResultSetRowList.h" |
| 43 #include "modules/webdatabase/SQLStatementCallback.h" | 43 #include "modules/webdatabase/SQLStatementCallback.h" |
| 44 #include "modules/webdatabase/SQLStatementErrorCallback.h" | 44 #include "modules/webdatabase/SQLStatementErrorCallback.h" |
| 45 #include "modules/webdatabase/SQLTransaction.h" | 45 #include "modules/webdatabase/SQLTransaction.h" |
| 46 #include "modules/webdatabase/SQLTransactionCallback.h" | 46 #include "modules/webdatabase/SQLTransactionCallback.h" |
| 47 #include "modules/webdatabase/SQLTransactionErrorCallback.h" | 47 #include "modules/webdatabase/SQLTransactionErrorCallback.h" |
| 48 #include "modules/webdatabase/sqlite/SQLValue.h" | 48 #include "modules/webdatabase/sqlite/SQLValue.h" |
| 49 #include "platform/inspector_protocol/Values.h" | |
| 50 #include "wtf/RefCounted.h" | 49 #include "wtf/RefCounted.h" |
| 51 #include "wtf/Vector.h" | 50 #include "wtf/Vector.h" |
| 52 | 51 |
| 53 typedef blink::protocol::Database::Backend::ExecuteSQLCallback ExecuteSQLCallbac
k; | 52 typedef blink::protocol::Database::Backend::ExecuteSQLCallback ExecuteSQLCallbac
k; |
| 54 | 53 |
| 55 namespace blink { | 54 namespace blink { |
| 56 | 55 |
| 57 namespace DatabaseAgentState { | 56 namespace DatabaseAgentState { |
| 58 static const char databaseAgentEnabled[] = "databaseAgentEnabled"; | 57 static const char databaseAgentEnabled[] = "databaseAgentEnabled"; |
| 59 }; | 58 }; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 } | 343 } |
| 345 | 344 |
| 346 DEFINE_TRACE(InspectorDatabaseAgent) | 345 DEFINE_TRACE(InspectorDatabaseAgent) |
| 347 { | 346 { |
| 348 visitor->trace(m_page); | 347 visitor->trace(m_page); |
| 349 visitor->trace(m_resources); | 348 visitor->trace(m_resources); |
| 350 InspectorBaseAgent::trace(visitor); | 349 InspectorBaseAgent::trace(visitor); |
| 351 } | 350 } |
| 352 | 351 |
| 353 } // namespace blink | 352 } // namespace blink |
| OLD | NEW |