chromium/components/sync/test/mock_nudge_handler.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/sync/test/mock_nudge_handler.h"

namespace syncer {

MockNudgeHandler::MockNudgeHandler() = default;

MockNudgeHandler::~MockNudgeHandler() = default;

void MockNudgeHandler::NudgeForInitialDownload(DataType type) {}

void MockNudgeHandler::NudgeForCommit(DataType type) {}

void MockNudgeHandler::SetHasPendingInvalidations(
    DataType type,
    bool has_pending_invalidations) {}

int MockNudgeHandler::GetNumInitialDownloadNudges() const {}

int MockNudgeHandler::GetNumCommitNudges() const {}

void MockNudgeHandler::ClearCounters() {}

}  // namespace syncer