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

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

Issue 2626643002: Stop showing notifications if they're ignored (Closed)
Patch Set: String.equals() Created 3 years, 11 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/ntp/ContentSuggestionsNotificationHelper.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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 android:exported="false" /> 863 android:exported="false" />
864 {% endfor %} 864 {% endfor %}
865 865
866 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro adcastReceiver" 866 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro adcastReceiver"
867 android:exported="false"> 867 android:exported="false">
868 <intent-filter> 868 <intent-filter>
869 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/> 869 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/>
870 </intent-filter> 870 </intent-filter>
871 </receiver> 871 </receiver>
872 872
873 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$OpenUrlReceiver"
874 android:exported="false"/>
875 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$DeleteReceiver"
876 android:exported="false"/>
873 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$TimeoutReceiver" 877 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio nsNotificationHelper$TimeoutReceiver"
874 android:exported="false"/> 878 android:exported="false"/>
875 879
876 <receiver android:name="org.chromium.base.PowerStatusReceiver"> 880 <receiver android:name="org.chromium.base.PowerStatusReceiver">
877 <intent-filter> 881 <intent-filter>
878 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> 882 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
879 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/> 883 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/>
880 </intent-filter> 884 </intent-filter>
881 </receiver> 885 </receiver>
882 886
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 971 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
968 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 972 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
969 The downstream manifest replaces this block, and hence replaces the list of media route 973 The downstream manifest replaces this block, and hence replaces the list of media route
970 controllers with its own list. --> 974 controllers with its own list. -->
971 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 975 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
972 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 976 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
973 977
974 {% endblock %} 978 {% endblock %}
975 </application> 979 </application>
976 </manifest> 980 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ntp/ContentSuggestionsNotificationHelper.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698