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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 #include "modules/indexeddb/IDBFactory.h" | 49 #include "modules/indexeddb/IDBFactory.h" |
50 #include "modules/indexeddb/IDBIndex.h" | 50 #include "modules/indexeddb/IDBIndex.h" |
51 #include "modules/indexeddb/IDBKey.h" | 51 #include "modules/indexeddb/IDBKey.h" |
52 #include "modules/indexeddb/IDBKeyPath.h" | 52 #include "modules/indexeddb/IDBKeyPath.h" |
53 #include "modules/indexeddb/IDBKeyRange.h" | 53 #include "modules/indexeddb/IDBKeyRange.h" |
54 #include "modules/indexeddb/IDBMetadata.h" | 54 #include "modules/indexeddb/IDBMetadata.h" |
55 #include "modules/indexeddb/IDBObjectStore.h" | 55 #include "modules/indexeddb/IDBObjectStore.h" |
56 #include "modules/indexeddb/IDBOpenDBRequest.h" | 56 #include "modules/indexeddb/IDBOpenDBRequest.h" |
57 #include "modules/indexeddb/IDBRequest.h" | 57 #include "modules/indexeddb/IDBRequest.h" |
58 #include "modules/indexeddb/IDBTransaction.h" | 58 #include "modules/indexeddb/IDBTransaction.h" |
59 #include "platform/v8_inspector/public/V8InspectorSession.h" | |
60 #include "platform/weborigin/SecurityOrigin.h" | 59 #include "platform/weborigin/SecurityOrigin.h" |
61 #include "public/platform/modules/indexeddb/WebIDBCursor.h" | 60 #include "public/platform/modules/indexeddb/WebIDBCursor.h" |
62 #include "public/platform/modules/indexeddb/WebIDBTypes.h" | 61 #include "public/platform/modules/indexeddb/WebIDBTypes.h" |
63 #include "wtf/Vector.h" | 62 #include "wtf/Vector.h" |
64 | 63 |
65 using blink::protocol::Array; | 64 using blink::protocol::Array; |
66 using blink::protocol::IndexedDB::DatabaseWithObjectStores; | 65 using blink::protocol::IndexedDB::DatabaseWithObjectStores; |
67 using blink::protocol::IndexedDB::DataEntry; | 66 using blink::protocol::IndexedDB::DataEntry; |
68 using blink::protocol::IndexedDB::Key; | 67 using blink::protocol::IndexedDB::Key; |
69 using blink::protocol::IndexedDB::KeyPath; | 68 using blink::protocol::IndexedDB::KeyPath; |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 clearObjectStore->start(idbFactory, document->getSecurityOrigin(), databaseN
ame); | 826 clearObjectStore->start(idbFactory, document->getSecurityOrigin(), databaseN
ame); |
828 } | 827 } |
829 | 828 |
830 DEFINE_TRACE(InspectorIndexedDBAgent) | 829 DEFINE_TRACE(InspectorIndexedDBAgent) |
831 { | 830 { |
832 visitor->trace(m_inspectedFrames); | 831 visitor->trace(m_inspectedFrames); |
833 InspectorBaseAgent::trace(visitor); | 832 InspectorBaseAgent::trace(visitor); |
834 } | 833 } |
835 | 834 |
836 } // namespace blink | 835 } // namespace blink |
OLD | NEW |