blob: 98bc4348eb7cf39b9fd9a5ae1b67820418fab2d4 [file] [log] [blame]
// Copyright 2020 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 "content/test/mock_badge_service.h"
#include <utility>
namespace content {
MockBadgeService::MockBadgeService() = default;
MockBadgeService::~MockBadgeService() = default;
void MockBadgeService::Bind(
mojo::PendingReceiver<blink::mojom::BadgeService> receiver) {
receivers_.Add(this, std::move(receiver));
}
void MockBadgeService::Reset() {}
void MockBadgeService::SetBadge(blink::mojom::BadgeValuePtr value) {}
void MockBadgeService::ClearBadge() {}
} // namespace content