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

Unified Diff: tools/android/customtabs_benchmark/java/AndroidManifest.xml

Issue 2722733004: customtabs: Benchmark app for WebView / Custom Tabs comparisons. (Closed)
Patch Set: . Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: tools/android/customtabs_benchmark/java/AndroidManifest.xml
diff --git a/tools/android/customtabs_benchmark/java/AndroidManifest.xml b/tools/android/customtabs_benchmark/java/AndroidManifest.xml
index 4dc91492a2707d61d9eead54d4ae02795f2f331a..f0db60ef7122528fb272b753209739147bb30a87 100644
--- a/tools/android/customtabs_benchmark/java/AndroidManifest.xml
+++ b/tools/android/customtabs_benchmark/java/AndroidManifest.xml
@@ -4,18 +4,23 @@
in the LICENSE file. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.customtabsclient.test"
+ package="org.chromium.customtabs.test"
android:versionCode="1"
android:versionName="1.0">
- <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
+ <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" />
- <application>
+ <uses-permission android:name="android.permission.INTERNET" />
+
+ <application android:label="CustomTabsBenchmark">
<activity android:name="org.chromium.customtabs.test.MainActivity"
- android:label="MainActivity">
+ android:label="CustomTabsBenchmark">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+ <activity android:name="org.chromium.customtabs.test.WebViewActivity"
+ android:label="WebViewActivity"
+ android:exported="false"/>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698