diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebDevToolsAgentClient.h')
-rw-r--r-- | Source/WebKit/chromium/public/WebDevToolsAgentClient.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebDevToolsAgentClient.h b/Source/WebKit/chromium/public/WebDevToolsAgentClient.h index 9c63b119d..7ac2c7c97 100644 --- a/Source/WebKit/chromium/public/WebDevToolsAgentClient.h +++ b/Source/WebKit/chromium/public/WebDevToolsAgentClient.h @@ -61,6 +61,14 @@ public: virtual void clearBrowserCache() { } virtual void clearBrowserCookies() { } + class AllocatedObjectVisitor { + public: + virtual bool visitObject(const void* ptr) = 0; + protected: + virtual ~AllocatedObjectVisitor() { } + }; + virtual void visitAllocatedObjects(AllocatedObjectVisitor*) { } + protected: ~WebDevToolsAgentClient() { } }; |