| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 <!-- GCMDriver multiplexed GCM receiver --> |
| 172 <service android:exported="false" |
| 173 android:name="org.chromium.components.gcm_driver.GCMListener"/> |
| 174 <receiver android:exported="false" |
| 175 android:name="org.chromium.components.gcm_driver.GCMListener$R
eceiver"> |
| 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> |
| OLD | NEW |