blob: b7a9f94b86711da9fca012cb44d84df09acd81da [file] [log] [blame]
package com.google.android.apps.pixelperfect.util;
/**
* Provides current value of time (now).
*/
public interface Clock {
/**
* Returns the current, absolute time in milliseconds, according to this clock.
*/
public long nowMs();
}