/**@class android.os.CommonClock.OnTimelineChangedListener The OnTimelineChangedListener interface defines a method called by the {@link android.os.CommonClock} instance to indicate that the time synchronization service has either synchronized with a new timeline, or is no longer a member of any timeline. The client application can implement this interface and register the listener with the {@link #setTimelineChangedListener}(OnTimelineChangedListener) method. */ var OnTimelineChangedListener = { /**Method called when the time service's timeline has changed. @param {Number} newTimelineId a long which uniquely identifies the timeline the time synchronization service is now a member of, or {@link #INVALID_TIMELINE_ID} if the the service is not synchronized to any timeline. */ onTimelineChanged : function( ) {}, };