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

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

Issue 2837503003: 🔍 Make the widget taller and usable on all channels (Closed)
Patch Set: 🔍 Make the widget taller and usable on all channels 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 <meta-data 665 <meta-data
666 android:name="android.appwidget.provider" 666 android:name="android.appwidget.provider"
667 android:resource="@xml/bookmark_widget_info" /> 667 android:resource="@xml/bookmark_widget_info" />
668 </receiver> 668 </receiver>
669 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkWidgetService" 669 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm arkWidgetService"
670 android:permission="android.permission.BIND_REMOTEVIEWS" 670 android:permission="android.permission.BIND_REMOTEVIEWS"
671 android:exported="false" /> 671 android:exported="false" />
672 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy" 672 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book markWidgetProxy"
673 android:exported="false" /> 673 android:exported="false" />
674 674
675 {% if channel in ['canary', 'default'] %}
676 <!-- Search widget --> 675 <!-- Search widget -->
677 <receiver 676 <receiver
678 android:name="org.chromium.chrome.browser.searchwidget.SearchWid getProvider" 677 android:name="org.chromium.chrome.browser.searchwidget.SearchWid getProvider"
679 android:label="@string/search_widget_title"> 678 android:label="@string/search_widget_title">
680 <intent-filter> 679 <intent-filter>
681 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 680 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
682 </intent-filter> 681 </intent-filter>
683 <intent-filter> 682 <intent-filter>
684 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_TEXT_QUERY" /> 683 <action android:name="org.chromium.chrome.browser.searchwidget.S TART_TEXT_QUERY" />
685 </intent-filter> 684 </intent-filter>
(...skipping 13 matching lines...) Expand all
699 android:theme="@style/SearchActivityTheme" 698 android:theme="@style/SearchActivityTheme"
700 android:label="Search" 699 android:label="Search"
701 android:exported="false" 700 android:exported="false"
702 android:launchMode="singleTask" 701 android:launchMode="singleTask"
703 android:taskAffinity="" 702 android:taskAffinity=""
704 android:clearTaskOnLaunch="true" 703 android:clearTaskOnLaunch="true"
705 android:excludeFromRecents="true" 704 android:excludeFromRecents="true"
706 android:windowSoftInputMode="adjustResize" 705 android:windowSoftInputMode="adjustResize"
707 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 706 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
708 android:hardwareAccelerated="false" /> 707 android:hardwareAccelerated="false" />
709 {% endif %}
710 708
711 <!-- Receiver for GCM messages. --> 709 <!-- Receiver for GCM messages. -->
712 <receiver android:name="com.google.android.gms.gcm.GcmReceiver" 710 <receiver android:name="com.google.android.gms.gcm.GcmReceiver"
713 android:exported="true" 711 android:exported="true"
714 android:permission="com.google.android.c2dm.permission.SEND"> 712 android:permission="com.google.android.c2dm.permission.SEND">
715 <intent-filter> 713 <intent-filter>
716 <action android:name="com.google.android.c2dm.intent.RECEIVE" /> 714 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
717 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" /> 715 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" />
718 <category android:name="{{ manifest_package }}"/> 716 <category android:name="{{ manifest_package }}"/>
719 </intent-filter> 717 </intent-filter>
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 953 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 954 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
957 The downstream manifest replaces this block, and hence replaces the list of media route 955 The downstream manifest replaces this block, and hence replaces the list of media route
958 controllers with its own list. --> 956 controllers with its own list. -->
959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 957 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 958 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
961 959
962 {% endblock %} 960 {% endblock %}
963 </application> 961 </application>
964 </manifest> 962 </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