android_webview: measure startup time with uptimeMillis().

elapsedRealtime() includes system sleep time; this can make the
measurements noisy since we can't be doing any startup while the CPU is
asleep. Use uptimeMillis instead as this doesn't count sleep.

Bug: 1204623
Change-Id: Id7be8674238bd50364e54efd7c67b67b22ce8e5d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2860307
Auto-Submit: Richard Coles <torne@chromium.org>
Reviewed-by: Mugdha Lakhani <nator@chromium.org>
Commit-Queue: Mugdha Lakhani <nator@chromium.org>
Cr-Commit-Position: refs/heads/master@{#878142}
NOKEYCHECK=True
GitOrigin-RevId: da3bb54157d4603b9c820d6cfdf61859f804dfb2
3 files changed
tree: 63747f9b0ff840a6e251cef7a8aac710fd62afa9
  1. java/
  2. BUILD.gn
  3. README.md
README.md

//android_webview/glue/

This folder contains a shim layer between the public frameworks APIs (android.webkit.*) and WebView's implementation, and allows them to (mostly) not directly depend on each other.

Folder Dependencies

//android_webview/java/ must not depend on this directory.

See Also