Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Unified Diff: Source/core/inspector/InspectorFrontendClient.h

Issue 415043003: Oilpan: Prepare moving InspectorFrontendHost to Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved InspectorFrontendClient to heap Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorFrontendClient.h
diff --git a/Source/core/inspector/InspectorFrontendClient.h b/Source/core/inspector/InspectorFrontendClient.h
index ca2b8bd4ac74eba1d485ebc6bc5719ce8ccae86e..99529c7155b900198d58f6ef4e8fdda4657c199f 100644
--- a/Source/core/inspector/InspectorFrontendClient.h
+++ b/Source/core/inspector/InspectorFrontendClient.h
@@ -31,15 +31,18 @@
#ifndef InspectorFrontendClient_h
#define InspectorFrontendClient_h
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/Vector.h"
namespace blink {
-class InspectorFrontendClient {
+class InspectorFrontendClient : public NoBaseWillBeGarbageCollectedFinalized<InspectorFrontendClient> {
public:
virtual ~InspectorFrontendClient() { }
+ virtual void trace(Visitor*) { }
+
virtual void windowObjectCleared() = 0;
virtual void sendMessageToBackend(const String&) = 0;
@@ -47,6 +50,8 @@ public:
virtual void sendMessageToEmbedder(const String&) = 0;
virtual bool isUnderTest() = 0;
+
+ virtual void dispose() = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698