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

Unified Diff: Source/modules/netinfo/NetworkInformation.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/modules/netinfo/NetworkInformation.h
diff --git a/Source/modules/netinfo/NetworkInformation.h b/Source/modules/netinfo/NetworkInformation.h
index 9fd448774ea383f3eec41b5ab3f4d80bc2304689..5369e568880d7c07b4a751bf15753539c82ce789 100644
--- a/Source/modules/netinfo/NetworkInformation.h
+++ b/Source/modules/netinfo/NetworkInformation.h
@@ -32,8 +32,8 @@ public:
// EventTarget overrides.
const AtomicString& interfaceName() const override;
ExecutionContext* executionContext() const override;
- bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
- bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
+ bool addEventListener(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, bool useCapture = false) override;
+ bool removeEventListener(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, bool useCapture = false) override;
void removeAllEventListeners() override;
// ActiveDOMObject overrides.

Powered by Google App Engine
This is Rietveld 408576698