blob: d64d75b81583693c2e9e900c624f931077ae313b [file] [log] [blame]
// Copyright 2022 The Chromium OS 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 "diagnostics/mojom/external/time_mojom_data_generators.h"
namespace diagnostics {
base::Time BaseTimeGenerator::Generate() {
has_next_ = false;
return base::Time::UnixEpoch();
}
base::TimeDelta BaseTimeDeltaGenerator::Generate() {
has_next_ = false;
return base::Seconds(1);
}
} // namespace diagnostics