// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "modules/push_messaging/PushController.h" #include "public/platform/modules/push_messaging/WebPushClient.h" #include "wtf/PassOwnPtr.h" namespace blink { PushController::PushController(WebPushClient* client) : m_client(client) { } PassOwnPtrWillBeRawPtr PushController::create(WebPushClient* client) { return adoptPtrWillBeNoop(new PushController(client)); } WebPushClient& PushController::clientFrom(LocalFrame* frame) { PushController* controller = PushController::from(frame); ASSERT(controller); WebPushClient* client = controller->client(); ASSERT(client); return *client; } const char* PushController::supplementName() { return "PushController"; } void providePushControllerTo(LocalFrame& frame, WebPushClient* client) { PushController::provideTo(frame, PushController::supplementName(), PushController::create(client)); } } // namespace blink