| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "wtf/Vector.h" | 61 #include "wtf/Vector.h" |
| 62 | 62 |
| 63 using blink::protocol::Array; | 63 using blink::protocol::Array; |
| 64 using blink::protocol::IndexedDB::DatabaseWithObjectStores; | 64 using blink::protocol::IndexedDB::DatabaseWithObjectStores; |
| 65 using blink::protocol::IndexedDB::DataEntry; | 65 using blink::protocol::IndexedDB::DataEntry; |
| 66 using blink::protocol::IndexedDB::Key; | 66 using blink::protocol::IndexedDB::Key; |
| 67 using blink::protocol::IndexedDB::KeyPath; | 67 using blink::protocol::IndexedDB::KeyPath; |
| 68 using blink::protocol::IndexedDB::KeyRange; | 68 using blink::protocol::IndexedDB::KeyRange; |
| 69 using blink::protocol::IndexedDB::ObjectStore; | 69 using blink::protocol::IndexedDB::ObjectStore; |
| 70 using blink::protocol::IndexedDB::ObjectStoreIndex; | 70 using blink::protocol::IndexedDB::ObjectStoreIndex; |
| 71 using blink::protocol::Maybe; |
| 72 using blink::protocol::Response; |
| 71 | 73 |
| 72 typedef blink::protocol::IndexedDB::Backend::RequestDatabaseNamesCallback | 74 typedef blink::protocol::IndexedDB::Backend::RequestDatabaseNamesCallback |
| 73 RequestDatabaseNamesCallback; | 75 RequestDatabaseNamesCallback; |
| 74 typedef blink::protocol::IndexedDB::Backend::RequestDatabaseCallback | 76 typedef blink::protocol::IndexedDB::Backend::RequestDatabaseCallback |
| 75 RequestDatabaseCallback; | 77 RequestDatabaseCallback; |
| 76 typedef blink::protocol::IndexedDB::Backend::RequestDataCallback | 78 typedef blink::protocol::IndexedDB::Backend::RequestDataCallback |
| 77 RequestDataCallback; | 79 RequestDataCallback; |
| 78 typedef blink::protocol::IndexedDB::Backend::ClearObjectStoreCallback | 80 typedef blink::protocol::IndexedDB::Backend::ClearObjectStoreCallback |
| 79 ClearObjectStoreCallback; | 81 ClearObjectStoreCallback; |
| 80 typedef blink::protocol::IndexedDB::Backend::DeleteDatabaseCallback | 82 typedef blink::protocol::IndexedDB::Backend::DeleteDatabaseCallback |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 document->getSecurityOrigin()->toRawString()), | 1029 document->getSecurityOrigin()->toRawString()), |
| 1028 false); | 1030 false); |
| 1029 } | 1031 } |
| 1030 | 1032 |
| 1031 DEFINE_TRACE(InspectorIndexedDBAgent) { | 1033 DEFINE_TRACE(InspectorIndexedDBAgent) { |
| 1032 visitor->trace(m_inspectedFrames); | 1034 visitor->trace(m_inspectedFrames); |
| 1033 InspectorBaseAgent::trace(visitor); | 1035 InspectorBaseAgent::trace(visitor); |
| 1034 } | 1036 } |
| 1035 | 1037 |
| 1036 } // namespace blink | 1038 } // namespace blink |
| OLD | NEW |