Davis Ford

Results 73 comments of Davis Ford

This patch no longer works with latest Chromium source. They have changed a number of things about `AwContents.java` and this will no longer compile.

Hi Victor, I do have the latest Chromium build working, and I'm debugging the scrolling code right now. If you want, you can clone my fork of your repo, and...

Ah yes, I had to copy another R.java file over. Adding this to your update.sh script should fix it -- if not let me know. Maybe there's another breaking change...

Here's the current source from `AwContents.java` in question: https://code.google.com/p/chromium/codesearch#chromium/src/android_webview/java/src/org/chromium/android_webview/AwContents.java&sq=package:chromium&type=cs&l=640 Pasted here for posterity: ``` java public void onDraw(Canvas canvas) { if (mNativeAwContents == 0) return; mScrollOffsetManager.syncScrollOffsetFromOnDraw(); canvas.getClipBounds(mClipBoundsTemporary); if (!nativeOnDraw(mNativeAwContents, canvas,...

@mlasak are you saying that the content_shell doesn't have scrolling performance issues? i've been side-tracked with other issues the last couple days, but hope to get back to this soon....

@mlasak I will try that soon on my Galaxy Tab 10.1 -- thanks for the heads up. Do you happen to know what explicitly we lose when you mention that...

@ziransun I had to to take a two week hiatus on this project to crank out some other software, but I intend to get back to it Monday, and I'm...

Anyone else tried building Chromium? I've got a MBP with 8 cores, 8GB RAM, and an Ubuntu 12.04 VM in VMWare Fusion that I gave 4 cores and 4GB RAM....

@mlasak yes, i forgot i changed the VM settings. changed them back and i finished the build. so, i copied the new src + binary artifacts over to my own...

On @mlasak's cue I looked into Chromium ContentShell. I've also been monitoring the chromium-dev list, and the Googlers on there indicate that ContentShell is a better starting point than AndroidWebView...