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

Side by Side Diff: chrome/android/javatests/AndroidManifest.xml

Issue 1206323004: Remove INJECT_EVENTS permissions from test APKs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: don't touch src/mojo Created 5 years, 5 months 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
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | chrome/android/shell/javatests/AndroidManifest.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- package name must be unique. --> 6 <!-- package name must be unique. -->
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.chrome.tests"> 8 package="org.chromium.chrome.tests">
9 9
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
11 <uses-permission android:name="android.permission.INJECT_EVENTS" />
12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> 11 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
13 <uses-permission android:name="android.permission.READ_LOGS"/> 12 <uses-permission android:name="android.permission.READ_LOGS"/>
14 <uses-permission android:name="android.permission.WAKE_LOCK" /> 13 <uses-permission android:name="android.permission.WAKE_LOCK" />
15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
16 <uses-permission android:name="android.permission.INTERNET" /> 15 <uses-permission android:name="android.permission.INTERNET" />
17 16
18 <application 17 <application
19 android:label="ChromePublicTest"> 18 android:label="ChromePublicTest">
20 19
21 <uses-library android:name="android.test.runner" /> 20 <uses-library android:name="android.test.runner" />
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" > 66 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" >
68 </action> 67 </action>
69 </intent-filter> 68 </intent-filter>
70 </receiver> 69 </receiver>
71 </application> 70 </application>
72 71
73 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" 72 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner"
74 android:targetPackage="{{manifest_package}}" 73 android:targetPackage="{{manifest_package}}"
75 android:label="Tests for {{manifest_package}}"/> 74 android:label="Tests for {{manifest_package}}"/>
76 </manifest> 75 </manifest>
OLDNEW
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | chrome/android/shell/javatests/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698