chromium/chrome/browser/notifications/scheduler/internal/webui_client.cc

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

#include "chrome/browser/notifications/scheduler/internal/webui_client.h"

#include <utility>

#include "base/notreached.h"

namespace notifications {

WebUIClient::WebUIClient() = default;

WebUIClient::~WebUIClient() = default;

void WebUIClient::BeforeShowNotification(
    std::unique_ptr<NotificationData> notification_data,
    NotificationDataCallback callback) {}

void WebUIClient::OnSchedulerInitialized(bool success,
                                         std::set<std::string> guids) {}

void WebUIClient::OnUserAction(const UserActionData& action_data) {}

void WebUIClient::GetThrottleConfig(ThrottleConfigCallback callback) {}

}  // namespace notifications