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

Side by Side Diff: components/cronet/android/test/javaperftests/AndroidManifest.xml

Issue 1650773003: Revert of [Cronet] Get Cronet performance test running again (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.chromium.net"> 3 package="org.chromium.net">
4 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 4 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" />
5 <uses-permission android:name="android.permission.INTERNET"/> 5 <uses-permission android:name="android.permission.INTERNET"/>
6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
8 <application> 8 <application>
9 <!-- Used to use Theme.NoDisplay but this is no longer the recommended
10 way and crashes in Android Marshmallow.
11 https://plus.google.com/105051985738280261832/posts/LjnRzJKWPGW -->
12 <activity android:name="CronetPerfTestActivity" 9 <activity android:name="CronetPerfTestActivity"
13 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 10 android:theme="@android:style/Theme.NoDisplay">
14 <intent-filter> 11 <intent-filter>
15 <action android:name="android.intent.action.MAIN" /> 12 <action android:name="android.intent.action.MAIN" />
16 <category android:name="android.intent.category.LAUNCHER" /> 13 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter> 14 </intent-filter>
18 </activity> 15 </activity>
19 </application> 16 </application>
20 </manifest> 17 </manifest>
OLDNEW
« no previous file with comments | « components/cronet/android/test/cronet_test_util.cc ('k') | components/cronet/android/test/javaperftests/proguard.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698