Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h |
diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h |
index c66535c39c0ceea0792b2c411f37eedb43b85520..994ddeebdf8b2af11a1a66221a21c8b555eb19f6 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h |
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h |
@@ -39,16 +39,16 @@ |
namespace blink { |
class InspectedFrames; |
- |
+class V8InspectorSession; |
class MODULES_EXPORT InspectorIndexedDBAgent final : public InspectorBaseAgent<protocol::IndexedDB::Metainfo> { |
public: |
- static InspectorIndexedDBAgent* create(InspectedFrames*); |
- |
+ InspectorIndexedDBAgent(InspectedFrames*, V8InspectorSession*); |
~InspectorIndexedDBAgent() override; |
DECLARE_VIRTUAL_TRACE(); |
void restore() override; |
+ void didCommitLoadForLocalFrame(LocalFrame*) override; |
// Called from the front-end. |
void enable(ErrorString*) override; |
@@ -59,9 +59,8 @@ public: |
void clearObjectStore(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, std::unique_ptr<ClearObjectStoreCallback>) override; |
private: |
- explicit InspectorIndexedDBAgent(InspectedFrames*); |
- |
Member<InspectedFrames> m_inspectedFrames; |
+ V8InspectorSession* m_v8Session; |
}; |
} // namespace blink |