Commit 995682ec by olly Committed by Oliver Woodman

Reflect ffwd/rew amount of time to UI

PiperOrigin-RevId: 296387837
parent ba58a521
......@@ -140,6 +140,16 @@ public class DefaultControlDispatcher implements ControlDispatcher {
return fastForwardIncrementMs > 0;
}
/** Returns the rewind increment in milliseconds. */
public long getRewindIncrementMs() {
return rewindIncrementMs;
}
/** Returns the fast forward increment in milliseconds. */
public long getFastForwardIncrementMs() {
return fastForwardIncrementMs;
}
/**
* @deprecated Create a new instance instead and pass the new instance to the UI component. This
* makes sure the UI gets updated and is in sync with the new values.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment