Hello:
I am trying to investigate a possible memory leak in Android.
I was able to track down that a listener of RenderViewImpl is not getting deleted because RenderViewImpl isn't always deleted. (This can be easily demonstrated with some printfs)
Looking at the code, it seems like RenderViewImpl reference counts itself with a AddRef at creation and Release at onClosed(). Besides some bind() calls, no one else seems to increment it's reference count.
What is the expected lifetime of the RenderViewImpl? Should it get delete on every onClose()? Is this a possible leak in Chromium?
-Alan