summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2010-10-29 11:42:55 -0700
committerJohn Reck <jreck@google.com>2010-11-01 13:24:43 -0700
commitdf63d2ff2e9881706eef78796d05078d0ffb7f60 (patch)
tree22ae1d5b09227bf05ff4cd501723fa6af9715a5a /AndroidManifest.xml
parent0187f3352b9f8989c70b4842c0d4b528f5c796cd (diff)
downloadpackages_apps_browser-df63d2ff2e9881706eef78796d05078d0ffb7f60.zip
packages_apps_browser-df63d2ff2e9881706eef78796d05078d0ffb7f60.tar.gz
packages_apps_browser-df63d2ff2e9881706eef78796d05078d0ffb7f60.tar.bz2
New bookmark list widget
Bug: 3144077 and 2988059 This replaces the old stack based widget with a list based one. It also updates whenever the bookmarks changes rather than periodically Change-Id: Ie37978918bab441bf31a6131360e308cd2bc0f4b
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 89e93dc..8e6934c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -200,19 +200,22 @@
android:configChanges="orientation|keyboardHidden" android:windowSoftInputMode="stateHidden">
</activity>
+ <!-- Bookmark list homescreen widget -->
<receiver
- android:name=".widget.BookmarkStackWidgetProvider"
+ android:name=".widget.BookmarkListWidgetProvider"
android:label="@string/bookmarks">
<intent-filter>
<action
android:name="android.appwidget.action.APPWIDGET_UPDATE" />
+ <action
+ android:name="com.android.browser.BOOKMARK_APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
- android:resource="@xml/bookmarkstackwidget" />
+ android:resource="@xml/bookmarklistwidget_info" />
</receiver>
<service
- android:name=".widget.BookmarkStackWidgetService"
+ android:name=".widget.BookmarkListWidgetService"
android:exported="true" />
<!-- Makes .BrowserActivity the search target for any activity in Browser -->