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

Unified Diff: Source/modules/push_messaging/PushController.cpp

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments Created 6 years, 8 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/push_messaging/PushController.cpp
diff --git a/Source/modules/push_messaging/PushController.cpp b/Source/modules/push_messaging/PushController.cpp
index a097074fc835e0adc50a01863975f104939a3c4f..e67829afcbcd179ca1c0edb7824c790cde84ddda 100644
--- a/Source/modules/push_messaging/PushController.cpp
+++ b/Source/modules/push_messaging/PushController.cpp
@@ -15,13 +15,9 @@ PushController::PushController(blink::WebPushClient* client)
{
}
-PushController::~PushController()
+PassOwnPtrWillBeRawPtr<PushController> PushController::create(blink::WebPushClient* client)
{
-}
-
-PassOwnPtr<PushController> PushController::create(blink::WebPushClient* client)
-{
- return adoptPtr(new PushController(client));
+ return adoptPtrWillBeNoop(new PushController(client));
}
blink::WebPushClient* PushController::clientFrom(Page* page)

Powered by Google App Engine
This is Rietveld 408576698