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