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

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

Issue 1063633004: [GCM] Move GCMListener into chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN and make onMessageReceived public Created 5 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.jinja2
diff --git a/chrome/android/shell/java/AndroidManifest.xml.jinja2 b/chrome/android/shell/java/AndroidManifest.xml.jinja2
index ce06f8ffcbb186c88aae7830146a5bff07dbf166..6ed8f8a5791eedb25a201e2d177c7993c48ce231 100644
--- a/chrome/android/shell/java/AndroidManifest.xml.jinja2
+++ b/chrome/android/shell/java/AndroidManifest.xml.jinja2
@@ -138,9 +138,9 @@
<!-- GCMDriver multiplexed GCM receiver -->
<service android:exported="false"
- android:name="org.chromium.components.gcm_driver.GCMListener"/>
+ android:name="org.chromium.chrome.browser.services.gcm.GCMListener"/>
Peter Beverloo 2015/04/10 11:52:02 We'll need to update this on our private manifest
Nicolas Zea 2015/04/10 17:10:29 Acknowledged.
<receiver android:exported="false"
- android:name="org.chromium.components.gcm_driver.GCMListener$Receiver">
+ android:name="org.chromium.chrome.browser.services.gcm.GCMListener$Receiver">
<intent-filter>
<action android:name="com.google.ipc.invalidation.gcmmplex.EVENT" />
</intent-filter>

Powered by Google App Engine
This is Rietveld 408576698