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.shell"> | 10 package="org.chromium.chrome.shell"> |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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> |
OLD | NEW |