blob: 79ecf0415a8b9cb211a1dba2eb60d7dd48d2616d [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 "peridot/bin/ledger/sync_coordinator/testing/page_sync_empty_impl.h"
#include <lib/fit/function.h>
#include <lib/fxl/logging.h>
namespace sync_coordinator {
void PageSyncEmptyImpl::Start() { FXL_NOTIMPLEMENTED(); }
void PageSyncEmptyImpl::SetOnIdle(fit::closure /*on_idle_callback*/) {
FXL_NOTIMPLEMENTED();
}
bool PageSyncEmptyImpl::IsIdle() {
FXL_NOTIMPLEMENTED();
return true;
}
void PageSyncEmptyImpl::SetOnBacklogDownloaded(
fit::closure /*on_backlog_downloaded_callback*/) {
FXL_NOTIMPLEMENTED();
}
void PageSyncEmptyImpl::SetSyncWatcher(SyncStateWatcher* /*watcher*/) {
FXL_NOTIMPLEMENTED();
}
} // namespace sync_coordinator