#include "components/autofill/core/browser/test_autofill_clock.h"
#include <memory>
#include <utility>
#include "base/test/simple_test_clock.h"
#include "base/time/clock.h"
#include "components/autofill/core/common/autofill_clock.h"
namespace autofill {
TestAutofillClock::TestAutofillClock(base::Time now)
: … { … }
TestAutofillClock::TestAutofillClock(
std::unique_ptr<base::SimpleTestClock> test_clock)
: … { … }
TestAutofillClock::~TestAutofillClock() { … }
void TestAutofillClock::SetNow(base::Time now) { … }
void TestAutofillClock::Advance(base::TimeDelta delta) { … }
}