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

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

Issue 1060373004: Add SyncCustomizationFragmentTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use better start browser function. 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/sync_shell/java/AndroidManifest.xml.jinja2
diff --git a/chrome/android/sync_shell/java/AndroidManifest.xml.jinja2 b/chrome/android/sync_shell/java/AndroidManifest.xml.jinja2
index 61795d4210b97d2b307f949a258b55f0307a837f..a7734601240b1f7d2d42a983f4fd237079ccc542 100644
--- a/chrome/android/sync_shell/java/AndroidManifest.xml.jinja2
+++ b/chrome/android/sync_shell/java/AndroidManifest.xml.jinja2
@@ -27,9 +27,9 @@
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<!-- Only Chrome can receive the messages and registration result for GCM -->
- <permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE"
+ <permission android:name="org.chromium.chrome.sync_shell.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
- <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE" />
+ <uses-permission android:name="org.chromium.chrome.sync_shell.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<application android:name="org.chromium.chrome.shell.ChromeShellApplication"
@@ -124,9 +124,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"/>
<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