Searched defs:frameTimeMicros (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DVSyncManager.java25 * @param frameTimeMicros The latest vsync frame time in microseconds.
27 void onVSync(long frameTimeMicros); argument
H A DContentViewCore.java271 public void onVSync(long frameTimeMicros) {
272 animateIfNecessary(frameTimeMicros);
280 nativeOnVSync(mNativeContentViewCore, frameTimeMicros);
2942 private boolean onAnimate(long frameTimeMicros) { argument
2944 return nativeOnAnimate(mNativeContentViewCore, frameTimeMicros);
2947 private void animateIfNecessary(long frameTimeMicros) { argument
2949 mNeedAnimate = onAnimate(frameTimeMicros);
3130 private native void nativeOnVSync(int nativeContentViewCoreImpl, long frameTimeMicros); argument
3132 private native boolean nativeOnAnimate(int nativeContentViewCoreImpl, long frameTimeMicros); argument

Completed in 81 milliseconds