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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.chrome.shell"> 10 package="org.chromium.chrome.shell">
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 <service android:exported="false" 161 <service android:exported="false"
162 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageReceiverService" 162 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageReceiverService"
163 android:enabled="true"/> 163 android:enabled="true"/>
164 <receiver android:exported="false" 164 <receiver android:exported="false"
165 android:name="com.google.ipc.invalidation.ticl.android2.channe l.AndroidMessageReceiverService$Receiver"> 165 android:name="com.google.ipc.invalidation.ticl.android2.channe l.AndroidMessageReceiverService$Receiver">
166 <intent-filter> 166 <intent-filter>
167 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> 167 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " />
168 </intent-filter> 168 </intent-filter>
169 </receiver> 169 </receiver>
170 170
171 <!-- Receiver for GCM web API messages rebroadcast from the Multiplexing GcmListener -->
172 <service android:exported="false"
173 android:name="org.chromium.chrome.browser.GcmPlatformImpl$GcmLi stener"/>
174 <receiver android:exported="false"
175 android:name="org.chromium.chrome.browser.GcmPlatformImpl$GcmL istener$Receiver">
176 <intent-filter>
177 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " />
178 </intent-filter>
179 </receiver>
180
171 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r" 181 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r"
172 android:authorities="org.chromium.chrome.shell" 182 android:authorities="org.chromium.chrome.shell"
173 android:exported="true" /> 183 android:exported="true" />
174 184
175 <!-- Sync adapter for browser sync. --> 185 <!-- Sync adapter for browser sync. -->
176 <service android:exported="false" 186 <service android:exported="false"
177 android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAda pterService"> 187 android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAda pterService">
178 <intent-filter> 188 <intent-filter>
179 <action android:name="android.content.SyncAdapter" /> 189 <action android:name="android.content.SyncAdapter" />
180 </intent-filter> 190 </intent-filter>
181 <meta-data android:name="android.content.SyncAdapter" 191 <meta-data android:name="android.content.SyncAdapter"
182 android:resource="@xml/syncadapter" /> 192 android:resource="@xml/syncadapter" />
183 </service> 193 </service>
184 194
185 <!-- Broadcast receiver that will be notified of account changes. --> 195 <!-- Broadcast receiver that will be notified of account changes. -->
186 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 196 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
187 <intent-filter> 197 <intent-filter>
188 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 198 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
189 </intent-filter> 199 </intent-filter>
190 </receiver> 200 </receiver>
191 </application> 201 </application>
192 </manifest> 202 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698