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

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

Issue 459513002: Massive refactor of the Android invalidation code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 3 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
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 </intent-filter> 169 </intent-filter>
170 </receiver> 170 </receiver>
171 <service android:exported="false" 171 <service android:exported="false"
172 android:name="com.google.ipc.invalidation.external.client.contr ib.MultiplexingGcmListener"> 172 android:name="com.google.ipc.invalidation.external.client.contr ib.MultiplexingGcmListener">
173 <meta-data android:name="sender_ids" 173 <meta-data android:name="sender_ids"
174 android:value="cloudprint.c2dm@gmail.com,ipc.invalidation @gmail.com"/> 174 android:value="cloudprint.c2dm@gmail.com,ipc.invalidation @gmail.com"/>
175 </service> 175 </service>
176 176
177 <!-- Notification service for sync. --> 177 <!-- Notification service for sync. -->
178 <meta-data android:name="ipc.invalidation.ticl.listener_service_class" 178 <meta-data android:name="ipc.invalidation.ticl.listener_service_class"
179 android:value="org.chromium.sync.notifier.InvalidationService "/> 179 android:value="org.chromium.components.invalidation.Invalidat ionClientService"/>
nyquist 2014/09/04 18:16:32 FYI: Since you have to do this here, you will have
maxbogue 2014/09/05 16:42:45 Acknowledged.
180 <service android:name="org.chromium.sync.notifier.InvalidationService" 180 <service android:name="org.chromium.components.invalidation.Invalidation ClientService"
181 android:exported="false"> 181 android:exported="false">
182 <intent-filter> 182 <intent-filter>
183 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQ UEST"/> 183 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQ UEST"/>
184 </intent-filter> 184 </intent-filter>
185 </service> 185 </service>
186 <service android:exported="false" 186 <service android:exported="false"
187 android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice"/> 187 android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice"/>
188 <service android:exported="false" 188 <service android:exported="false"
189 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"/> 189 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"/>
190 <receiver android:exported="false" 190 <receiver android:exported="false"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 240 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
241 <intent-filter> 241 <intent-filter>
242 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 242 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
243 </intent-filter> 243 </intent-filter>
244 </receiver> 244 </receiver>
245 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 245 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
246 android:value="org.chromium.content.browser.SmartClipProvider " /> 246 android:value="org.chromium.content.browser.SmartClipProvider " />
247 247
248 </application> 248 </application>
249 </manifest> 249 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698