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

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

Issue 2819083002: 🔍 Add basic search widget test (Closed)
Patch Set: 🔍 Tests 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/searchwidget/SearchActivity.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy" 696 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy"
697 android:exported="false" /> 697 android:exported="false" />
698 698
699 {% if channel in ['canary', 'default'] %} 699 {% if channel in ['canary', 'default'] %}
700 <!-- Search widget --> 700 <!-- Search widget -->
701 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW idgetProvider"> 701 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW idgetProvider">
702 <intent-filter> 702 <intent-filter>
703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
704 </intent-filter> 704 </intent-filter>
705 <intent-filter> 705 <intent-filter>
706 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_SEARCH_ACTIVITY" /> 706 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_TEXT_QUERY" />
707 </intent-filter>
708 <intent-filter>
709 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_VOICE_QUERY" />
707 </intent-filter> 710 </intent-filter>
708 <intent-filter> 711 <intent-filter>
709 <action android:name="org.chromium.chrome.browser.searchwidget.U PDATE_ALL_WIDGETS" /> 712 <action android:name="org.chromium.chrome.browser.searchwidget.U PDATE_ALL_WIDGETS" />
710 </intent-filter> 713 </intent-filter>
711 <meta-data android:name="android.appwidget.provider" 714 <meta-data android:name="android.appwidget.provider"
712 android:resource="@xml/search_widget_info" /> 715 android:resource="@xml/search_widget_info" />
713 </receiver> 716 </receiver>
714 717
715 <!-- Search Activity --> 718 <!-- Search Activity -->
716 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA ctivity" 719 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA ctivity"
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 976 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
974 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 977 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
975 The downstream manifest replaces this block, and hence replaces the list of media route 978 The downstream manifest replaces this block, and hence replaces the list of media route
976 controllers with its own list. --> 979 controllers with its own list. -->
977 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 980 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
978 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 981 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
979 982
980 {% endblock %} 983 {% endblock %}
981 </application> 984 </application>
982 </manifest> 985 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/searchwidget/SearchActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698