OLD | NEW |
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.sync_shell"> | 10 package="org.chromium.chrome.sync_shell"> |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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"/> |
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> | 231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> |
232 <intent-filter> | 232 <intent-filter> |
233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
234 </intent-filter> | 234 </intent-filter> |
235 </receiver> | 235 </receiver> |
236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
237 android:value="org.chromium.content.browser.SmartClipProvider
" /> | 237 android:value="org.chromium.content.browser.SmartClipProvider
" /> |
238 | 238 |
239 </application> | 239 </application> |
240 </manifest> | 240 </manifest> |
OLD | NEW |