Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 1840193002: Rename "BookmarkThumbnailWidget" to "BookmarkWidget". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix lint Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 532
533 <!-- Bookmarks widget --> 533 <!-- Bookmarks widget -->
534 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar ks.BookmarkThumbnailWidgetProvider" 534 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar ks.BookmarkThumbnailWidgetProvider"
535 android:label="@string/bookmarks"> 535 android:label="@string/bookmarks">
536 <intent-filter> 536 <intent-filter>
537 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 537 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
538 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" /> 538 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" />
539 </intent-filter> 539 </intent-filter>
540 <meta-data 540 <meta-data
541 android:name="android.appwidget.provider" 541 android:name="android.appwidget.provider"
542 android:resource="@xml/bookmark_thumbnail_widget_info" /> 542 android:resource="@xml/bookmark_widget_info" />
543 </receiver> 543 </receiver>
544 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkThumbnailWidgetService" 544 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkWidgetService"
545 android:permission="android.permission.BIND_REMOTEVIEWS" 545 android:permission="android.permission.BIND_REMOTEVIEWS"
546 android:exported="false" /> 546 android:exported="false" />
547 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy" 547 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy"
548 android:exported="false" /> 548 android:exported="false" />
549 549
550 <!-- Receiver for GCM messages. --> 550 <!-- Receiver for GCM messages. -->
551 <receiver android:name="com.google.android.gms.gcm.GcmReceiver" 551 <receiver android:name="com.google.android.gms.gcm.GcmReceiver"
552 android:exported="true" 552 android:exported="true"
553 android:permission="com.google.android.c2dm.permission.SEND"> 553 android:permission="com.google.android.c2dm.permission.SEND">
554 <intent-filter> 554 <intent-filter>
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 791 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
792 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 792 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
793 The downstream manifest replaces this block, and hence replaces the list of media route 793 The downstream manifest replaces this block, and hence replaces the list of media route
794 controllers with its own list. --> 794 controllers with its own list. -->
795 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 795 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
796 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 796 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
797 797
798 {% endblock %} 798 {% endblock %}
799 </application> 799 </application>
800 </manifest> 800 </manifest>
OLDNEW
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | chrome/android/java/res/layout/bookmark_thumbnail_widget.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698