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

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

Issue 2819083002: 🔍 Add basic search widget test (Closed)
Patch Set: 🔍 Further widget cleanup Created 3 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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 698
699 {% if channel in ['canary', 'default'] %} 699 {% if channel in ['canary', 'default'] %}
700 <!-- Search widget --> 700 <!-- Search widget -->
701 <receiver 701 <receiver
702 android:name="org.chromium.chrome.browser.searchwidget.SearchWid getProvider" 702 android:name="org.chromium.chrome.browser.searchwidget.SearchWid getProvider"
703 android:label="@string/search_widget_title"> 703 android:label="@string/search_widget_title">
704 <intent-filter> 704 <intent-filter>
705 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 705 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
706 </intent-filter> 706 </intent-filter>
707 <intent-filter> 707 <intent-filter>
708 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_SEARCH_ACTIVITY" /> 708 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_TEXT_QUERY" />
709 </intent-filter>
710 <intent-filter>
711 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_VOICE_QUERY" />
709 </intent-filter> 712 </intent-filter>
710 <intent-filter> 713 <intent-filter>
711 <action android:name="org.chromium.chrome.browser.searchwidget.U PDATE_ALL_WIDGETS" /> 714 <action android:name="org.chromium.chrome.browser.searchwidget.U PDATE_ALL_WIDGETS" />
712 </intent-filter> 715 </intent-filter>
713 <meta-data 716 <meta-data
714 android:name="android.appwidget.provider" 717 android:name="android.appwidget.provider"
715 android:resource="@xml/search_widget_info" /> 718 android:resource="@xml/search_widget_info" />
716 </receiver> 719 </receiver>
717 720
718 <!-- Search Activity --> 721 <!-- Search Activity -->
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 979 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
977 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 980 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
978 The downstream manifest replaces this block, and hence replaces the list of media route 981 The downstream manifest replaces this block, and hence replaces the list of media route
979 controllers with its own list. --> 982 controllers with its own list. -->
980 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 983 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
981 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 984 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
982 985
983 {% endblock %} 986 {% endblock %}
984 </application> 987 </application>
985 </manifest> 988 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698