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

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: A couple GN fixes. Created 6 years, 2 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 </intent-filter> 174 </intent-filter>
175 </receiver> 175 </receiver>
176 <service android:exported="false" 176 <service android:exported="false"
177 android:name="com.google.ipc.invalidation.external.client.contr ib.MultiplexingGcmListener"> 177 android:name="com.google.ipc.invalidation.external.client.contr ib.MultiplexingGcmListener">
178 <meta-data android:name="sender_ids" 178 <meta-data android:name="sender_ids"
179 android:value="cloudprint.c2dm@gmail.com,ipc.invalidation @gmail.com"/> 179 android:value="cloudprint.c2dm@gmail.com,ipc.invalidation @gmail.com"/>
180 </service> 180 </service>
181 181
182 <!-- Notification service for sync. --> 182 <!-- Notification service for sync. -->
183 <meta-data android:name="ipc.invalidation.ticl.listener_service_class" 183 <meta-data android:name="ipc.invalidation.ticl.listener_service_class"
184 android:value="org.chromium.sync.notifier.InvalidationService "/> 184 android:value="org.chromium.components.invalidation.Invalidat ionClientService"/>
185 <service android:name="org.chromium.sync.notifier.InvalidationService" 185 <service android:name="org.chromium.components.invalidation.Invalidation ClientService"
186 android:exported="false"> 186 android:exported="false">
187 <intent-filter> 187 <intent-filter>
188 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQ UEST"/> 188 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQ UEST"/>
189 </intent-filter> 189 </intent-filter>
190 </service> 190 </service>
191 <service android:exported="false" 191 <service android:exported="false"
192 android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice"/> 192 android:name="com.google.ipc.invalidation.ticl.android2.TiclSer vice"/>
193 <service android:exported="false" 193 <service android:exported="false"
194 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"/> 194 android:name="com.google.ipc.invalidation.ticl.android2.channel .AndroidMessageSenderService"/>
195 <receiver android:exported="false" 195 <receiver android:exported="false"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 245 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
246 <intent-filter> 246 <intent-filter>
247 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 247 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
248 </intent-filter> 248 </intent-filter>
249 </receiver> 249 </receiver>
250 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 250 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
251 android:value="org.chromium.content.browser.SmartClipProvider " /> 251 android:value="org.chromium.content.browser.SmartClipProvider " />
252 252
253 </application> 253 </application>
254 </manifest> 254 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698