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

Unified Diff: chrome/android/shell/java/AndroidManifest.xml

Issue 237323002: [NOT FOR REVIEW] Plumb Android GCM to Push API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/shell/java/AndroidManifest.xml
diff --git a/chrome/android/shell/java/AndroidManifest.xml b/chrome/android/shell/java/AndroidManifest.xml
index b3e17ef896285f07941e3621b0ef0f00dc3519d5..91a96bc79f5d843c6e439de57a91678a7d6ddd78 100644
--- a/chrome/android/shell/java/AndroidManifest.xml
+++ b/chrome/android/shell/java/AndroidManifest.xml
@@ -168,6 +168,16 @@
</intent-filter>
</receiver>
+ <!-- Receiver for GCM web API messages rebroadcast from the MultiplexingGcmListener -->
+ <service android:exported="false"
+ android:name="org.chromium.chrome.browser.GcmPlatformImpl$GcmListener"/>
+ <receiver android:exported="false"
+ android:name="org.chromium.chrome.browser.GcmPlatformImpl$GcmListener$Receiver">
+ <intent-filter>
+ <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT" />
+ </intent-filter>
+ </receiver>
+
<provider android:name="org.chromium.chrome.browser.ChromeBrowserProvider"
android:authorities="org.chromium.chrome.shell"
android:exported="true" />

Powered by Google App Engine
This is Rietveld 408576698