| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 <!-- Copyright (c) 2012 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.content_shell_apk"> | 10 package="org.chromium.content_shell_apk"> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" | 65 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" |
| 66 android:exported="false" /> | 66 android:exported="false" /> |
| 67 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> | 67 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> |
| 68 <intent-filter> | 68 <intent-filter> |
| 69 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 69 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 70 </intent-filter> | 70 </intent-filter> |
| 71 </receiver> | 71 </receiver> |
| 72 | 72 |
| 73 </application> | 73 </application> |
| 74 </manifest> | 74 </manifest> |
| OLD | NEW |