chromium/content/browser/service_worker/service_worker_ping_controller.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/service_worker/service_worker_ping_controller.h"

#include "content/browser/service_worker/service_worker_version.h"

namespace content {

namespace {
// Timeout for waiting for a response to a ping.
constexpr base::TimeDelta kPingTimeout =;
}  // namespace

ServiceWorkerPingController::ServiceWorkerPingController(
    ServiceWorkerVersion* version)
    :{}

ServiceWorkerPingController::~ServiceWorkerPingController() = default;

void ServiceWorkerPingController::Activate() {}

void ServiceWorkerPingController::Deactivate() {}

void ServiceWorkerPingController::OnPongReceived() {}

bool ServiceWorkerPingController::IsActivated() const {}

bool ServiceWorkerPingController::IsTimedOut() const {}

void ServiceWorkerPingController::CheckPingStatus() {}

void ServiceWorkerPingController::SimulateTimeoutForTesting() {}

void ServiceWorkerPingController::ClearLastPingTime() {}

}  // namespace content