Unable to click history url whose length is greater than 2048

This is regression caused by previous patch where we tried to
make TextView to be multi line and scrollable. Fixed issue by
removing 'setMovementMethod' call on TextView which was consuming
onTouch event and due to which 'BrowserHistoryPage.onChildClick'
method was never getting called.

CR-Fixed: 804112

Change-Id: I085bf1d44b2f9e84adefb8180933a96c1d376310
diff --git a/src/com/android/browser/BookmarkItem.java b/src/com/android/browser/BookmarkItem.java
index 8573290..76115cf 100644
--- a/src/com/android/browser/BookmarkItem.java
+++ b/src/com/android/browser/BookmarkItem.java
@@ -154,7 +154,6 @@
             * Rest of it will be scrollable.
             */
             mUrlText.setMaxLines(3);
-            mUrlText.setMovementMethod(new ScrollingMovementMethod());
         }
 
         mUrlText.setText(url);