Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: components/devtools_bridge/android/javatests/AndroidManifest.xml

Issue 734313002: Switching to native implementation of SessionDependencyFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@native-factory-3
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <uses-library android:name="android.test.runner" /> 11 <uses-library android:name="android.test.runner" />
11 <service 12 <service
12 android:name=".DebugService" > 13 android:name=".DebugService" >
13 </service> 14 </service>
14 <service 15 <service
15 android:name="org.chromium.components.devtools_bridge.DevToolsBr idgeServerSandbox$Service" /> 16 android:name="org.chromium.components.devtools_bridge.DevToolsBr idgeServerSandbox$Service" />
16 <service 17 <service
17 android:name="org.chromium.components.devtools_bridge.GCDHostSer vice" /> 18 android:name="org.chromium.components.devtools_bridge.GCDHostSer vice" />
18 <activity 19 <activity
19 android:name=".DebugActivity" 20 android:name=".DebugActivity"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / > 54 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / >
54 <uses-permission 55 <uses-permission
55 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE" /> 56 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE" />
56 57
57 <!-- For manual testing with Chrome Shell --> 58 <!-- For manual testing with Chrome Shell -->
58 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / > 59 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / >
59 60
60 <!-- For manual testing with Clankium --> 61 <!-- For manual testing with Clankium -->
61 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" /> 62 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" />
62 </manifest> 63 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698