diff options
author | John Reck <jreck@google.com> | 2011-07-25 13:55:44 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-07-26 10:37:02 -0700 |
commit | af262e703038106aef2e5187d120617836ffe9ce (patch) | |
tree | 4a3e1a7b6d96d7fe18c7a7234c1ff561f00b5ece /src/com/android/browser/AddBookmarkPage.java | |
parent | a229f22f88a0ae7a5e6601744c1b37795117bb4f (diff) | |
download | packages_apps_Browser-af262e703038106aef2e5187d120617836ffe9ce.zip packages_apps_Browser-af262e703038106aef2e5187d120617836ffe9ce.tar.gz packages_apps_Browser-af262e703038106aef2e5187d120617836ffe9ce.tar.bz2 |
Remove obsolete usage of WebIconDatabase
Bug: 5019676
Removes some other legacy code
Change-Id: I766d9d6f7805b5619a9769e6d72ae2f4c363d3ed
Diffstat (limited to 'src/com/android/browser/AddBookmarkPage.java')
-rw-r--r-- | src/com/android/browser/AddBookmarkPage.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/AddBookmarkPage.java b/src/com/android/browser/AddBookmarkPage.java index 32db550..45b1f8b 100644 --- a/src/com/android/browser/AddBookmarkPage.java +++ b/src/com/android/browser/AddBookmarkPage.java @@ -759,7 +759,7 @@ public class AddBookmarkPage extends Activity try { final ContentResolver cr = getContentResolver(); Bookmarks.addBookmark(AddBookmarkPage.this, false, url, - title, thumbnail, true, mCurrentFolder); + title, thumbnail, mCurrentFolder); if (touchIconUrl != null) { new DownloadTouchIcon(mContext, cr, url).execute(mTouchIconUrl); } |