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

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

Issue 1238083002: Oilpan: Move the EventListener hierarchy to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/InjectedScriptHost.h
diff --git a/Source/core/inspector/InjectedScriptHost.h b/Source/core/inspector/InjectedScriptHost.h
index e497abf7fabe3f6d63fee5528b14d0a4d36e1c5c..c3688f3d338adca77dc7ddf49e5351d51366127c 100644
--- a/Source/core/inspector/InjectedScriptHost.h
+++ b/Source/core/inspector/InjectedScriptHost.h
@@ -50,7 +50,7 @@ class JSONValue;
class ScriptValue;
class V8Debugger;
-struct EventListenerInfo;
+class EventListenerInfo;
// SECURITY NOTE: Although the InjectedScriptHost is intended for use solely by the inspector,
// a reference to the InjectedScriptHost may be leaked to the page being inspected. Thus, the
@@ -89,7 +89,7 @@ public:
InspectableObject* inspectedObject(unsigned num);
void inspectImpl(PassRefPtr<JSONValue> objectToInspect, PassRefPtr<JSONValue> hints);
- void getEventListenersImpl(EventTarget*, Vector<EventListenerInfo>& listenersArray);
+ void getEventListenersImpl(EventTarget*, WillBeHeapVector<EventListenerInfo>& listenersArray);
void clearConsoleMessages();
void debugFunction(const String& scriptId, int lineNumber, int columnNumber);

Powered by Google App Engine
This is Rietveld 408576698