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

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

Issue 2777283005: Add an experimental search widget (Closed)
Patch Set: Moved initialize to FinishNativeInitialization 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/res/layout/search_widget_template.xml » ('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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 <meta-data 724 <meta-data
725 android:name="android.appwidget.provider" 725 android:name="android.appwidget.provider"
726 android:resource="@xml/bookmark_widget_info" /> 726 android:resource="@xml/bookmark_widget_info" />
727 </receiver> 727 </receiver>
728 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkWidgetService" 728 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkWidgetService"
729 android:permission="android.permission.BIND_REMOTEVIEWS" 729 android:permission="android.permission.BIND_REMOTEVIEWS"
730 android:exported="false" /> 730 android:exported="false" />
731 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy" 731 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy"
732 android:exported="false" /> 732 android:exported="false" />
733 733
734 {% if channel in ['default'] %}
735 <!-- Search widget -->
736 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW idgetProvider"
737 android:process=":search_widget">
738 <intent-filter>
739 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
740 </intent-filter>
741 <intent-filter>
742 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_SEARCH_ACTIVITY" />
743 </intent-filter>
744 <intent-filter>
745 <action android:name="org.chromium.chrome.browser.searchwidget.U PDATE_ALL_WIDGETS" />
746 </intent-filter>
747 <meta-data android:name="android.appwidget.provider"
748 android:resource="@xml/search_widget_info" />
749 </receiver>
750
751 <!-- Search Activity -->
752 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA ctivity"
753 android:theme="@style/OverlayTheme"
754 android:label="Search"
755 android:exported="false"
756 android:launchMode="singleInstance"
757 android:taskAffinity=""
758 android:clearTaskOnLaunch="true"
759 android:excludeFromRecents="true"
760 android:windowSoftInputMode="adjustResize"
761 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
762 android:hardwareAccelerated="false" />
763 {% endif %}
764
734 <!-- Receiver for GCM messages. --> 765 <!-- Receiver for GCM messages. -->
735 <receiver android:name="com.google.android.gms.gcm.GcmReceiver" 766 <receiver android:name="com.google.android.gms.gcm.GcmReceiver"
736 android:exported="true" 767 android:exported="true"
737 android:permission="com.google.android.c2dm.permission.SEND"> 768 android:permission="com.google.android.c2dm.permission.SEND">
738 <intent-filter> 769 <intent-filter>
739 <action android:name="com.google.android.c2dm.intent.RECEIVE" /> 770 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
740 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" /> 771 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" />
741 <category android:name="{{ manifest_package }}"/> 772 <category android:name="{{ manifest_package }}"/>
742 </intent-filter> 773 </intent-filter>
743 </receiver> 774 </receiver>
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 1008 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
978 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 1009 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
979 The downstream manifest replaces this block, and hence replaces the list of media route 1010 The downstream manifest replaces this block, and hence replaces the list of media route
980 controllers with its own list. --> 1011 controllers with its own list. -->
981 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 1012 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
982 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 1013 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
983 1014
984 {% endblock %} 1015 {% endblock %}
985 </application> 1016 </application>
986 </manifest> 1017 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/search_widget_template.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698