| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of |
| 3 this source code is governed by a BSD-style license that can be found | 3 this source code is governed by a BSD-style license that can be found |
| 4 in the LICENSE file. --> | 4 in the LICENSE file. --> |
| 5 <!-- package name must be unique so suffix with "tests" so package loader | 5 <!-- package name must be unique so suffix with "tests" so package loader |
| 6 doesn't ignore this. --> | 6 doesn't ignore this. --> |
| 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 package="org.chromium.components.devtools_bridge.tests"> | 8 package="org.chromium.components.devtools_bridge.tests"> |
| 9 <application | 9 <application |
| 10 android:name=".TestApplication"> | 10 android:name=".TestApplication"> |
| 11 <uses-library android:name="android.test.runner" /> | 11 <uses-library android:name="android.test.runner" /> |
| 12 <service | 12 <service |
| 13 android:name=".DebugService" > | 13 android:name=".DebugService" > |
| 14 </service> | 14 </service> |
| 15 <service | |
| 16 android:name="org.chromium.components.devtools_bridge.DevToolsBr
idgeServerSandbox$Service" /> | |
| 17 <service | |
| 18 android:name="org.chromium.components.devtools_bridge.GCDHostSer
vice" /> | |
| 19 <activity | 15 <activity |
| 20 android:name=".DebugActivity" | 16 android:name=".DebugActivity" |
| 21 android:label="DevToolsBridge tests" > | 17 android:label="DevToolsBridge tests" > |
| 22 <intent-filter> | 18 <intent-filter> |
| 23 <action android:name="android.intent.action.MAIN" /> | 19 <action android:name="android.intent.action.MAIN" /> |
| 24 <category android:name="android.intent.category.LAUNCHER" /> | 20 <category android:name="android.intent.category.LAUNCHER" /> |
| 25 </intent-filter> | 21 </intent-filter> |
| 26 </activity> | 22 </activity> |
| 27 | 23 |
| 28 <!-- DevToolsBridgeService multiplexed GCM receiver --> | 24 <!-- DevToolsBridgeService multiplexed GCM receiver --> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> | 65 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> |
| 70 <uses-permission | 66 <uses-permission |
| 71 android:name="org.chromium.components.devtools_bridge.tests.permissi
on.C2D_MESSAGE" /> | 67 android:name="org.chromium.components.devtools_bridge.tests.permissi
on.C2D_MESSAGE" /> |
| 72 | 68 |
| 73 <!-- For manual testing with Chrome Shell --> | 69 <!-- For manual testing with Chrome Shell --> |
| 74 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> | 70 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> |
| 75 | 71 |
| 76 <!-- For manual testing with Clankium --> | 72 <!-- For manual testing with Clankium --> |
| 77 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> | 73 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> |
| 78 </manifest> | 74 </manifest> |
| OLD | NEW |