Merge "Add comment"

main
Kurt Partridge 2013-01-17 17:50:42 +00:00 committed by Android (Google) Code Review
commit 34ecd12a05
1 changed files with 5 additions and 0 deletions

View File

@ -852,6 +852,11 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
mCurrentLogUnit = newLogUnit;
}
/**
* Record the time of a MotionEvent.ACTION_DOWN.
*
* Warning: Not thread safe. Only call from the main thread.
*/
private void setSavedDownEventTime(final long time) {
mSavedDownEventTime = time;
}