First revision of the new browser provider.

This one has support for bookmarks sync,
has the bookmarks and history in separate
tables, and supports hierarchical bookmarks.

Compatibility with the old APIs is not yet complete.

The Bookmarks UI has been switched over to the
new provider. Creating bookmarks puts them
in the UIs root folder.

Change-Id: Ib21713ddd19f43d178d49dbac977f749e7103368
diff --git a/src/com/android/browser/DownloadTouchIcon.java b/src/com/android/browser/DownloadTouchIcon.java
index 765d288..2816f58 100644
--- a/src/com/android/browser/DownloadTouchIcon.java
+++ b/src/com/android/browser/DownloadTouchIcon.java
@@ -101,7 +101,7 @@
     @Override
     public Void doInBackground(String... values) {
         if (mContentResolver != null) {
-            mCursor = BrowserBookmarksAdapter.queryBookmarksForUrl(mContentResolver,
+            mCursor = Bookmarks.queryBookmarksForUrl(mContentResolver,
                     mOriginalUrl, mUrl, true);
         }