Fix blank bitmaps in tab switcher

- Tab switcher was showing white bitmaps when
  a link was opened in new tab.

CR-Fixed: SWE-5690

Change-Id: I4dead264e4332196af3fcfd3ad049d9e09d2b798
diff --git a/src/com/android/browser/WebViewController.java b/src/com/android/browser/WebViewController.java
index f7b926e..6bf2f69 100644
--- a/src/com/android/browser/WebViewController.java
+++ b/src/com/android/browser/WebViewController.java
@@ -112,4 +112,6 @@
     void bookmarkedStatusHasChanged(Tab tab);
 
     boolean shouldCaptureThumbnails();
+
+    void onThumbnailCapture(Bitmap bm);
 }