Make the deletion of bookmarks depend on both title and URL
Fixes http://b/issue?id=2134421
diff --git a/src/com/android/browser/BrowserBookmarksPage.java b/src/com/android/browser/BrowserBookmarksPage.java
index 23fcc5a..019806c 100644
--- a/src/com/android/browser/BrowserBookmarksPage.java
+++ b/src/com/android/browser/BrowserBookmarksPage.java
@@ -154,7 +154,7 @@
// If the site is bookmarked, the item becomes remove from
// bookmarks.
if (isBookmark) {
- Bookmarks.removeFromBookmarks(this, getContentResolver(), url);
+ Bookmarks.removeFromBookmarks(this, getContentResolver(), url, name);
} else {
Browser.saveBookmark(this, name, url);
}