chromium/components/gcm_driver/gcm_delayed_task_controller.cc

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

#include "components/gcm_driver/gcm_delayed_task_controller.h"

#include <stddef.h>

#include "base/check.h"
#include "base/metrics/histogram_functions.h"

namespace gcm {

GCMDelayedTaskController::GCMDelayedTaskController() = default;

GCMDelayedTaskController::~GCMDelayedTaskController() = default;

void GCMDelayedTaskController::AddTask(base::OnceClosure task) {}

void GCMDelayedTaskController::SetReady() {}

bool GCMDelayedTaskController::CanRunTaskWithoutDelay() const {}

void GCMDelayedTaskController::RunTasks() {}

}  // namespace gcm