diff options
author | John Reck <jreck@google.com> | 2011-01-11 10:26:02 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-01-11 15:17:22 -0800 |
commit | bafe58a83ade9cfa5c91e7033fae2d08a64603e8 (patch) | |
tree | 2b186ea38895f7cd694a711d757626329090cb2e /AndroidManifest.xml | |
parent | 1605bef4e1f99805a801308f97ade622b907dc7a (diff) | |
download | packages_apps_browser-bafe58a83ade9cfa5c91e7033fae2d08a64603e8.zip packages_apps_browser-bafe58a83ade9cfa5c91e7033fae2d08a64603e8.tar.gz packages_apps_browser-bafe58a83ade9cfa5c91e7033fae2d08a64603e8.tar.bz2 |
Most Visited custom homepage
Change-Id: Ic57762855e5d187aa0fe3a8eab2757b5a76ff08d
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 5b844e0..9ceaf82 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -223,6 +223,13 @@ <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/> </intent-filter> </receiver> + + <!-- For custom home pages (like most visited) --> + <provider + android:name=".homepages.HomeProvider" + android:authorities="com.android.browser.home" + android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS" + android:exported="false" /> </application> </manifest> |