Merge change I3dafca18 into eclair-mr2

* changes:
  Enabling plugin surfaces to update their position in the UI.
This commit is contained in:
Android (Google) Code Review
2009-10-13 14:39:37 -04:00

View File

@@ -2215,6 +2215,11 @@ final class WebViewCore {
return view;
}
private void updateSurface(ViewManager.ChildView childView, int x, int y,
int width, int height) {
childView.attachView(x, y, width, height);
}
private void destroySurface(ViewManager.ChildView childView) {
childView.removeView();
}