summaryrefslogtreecommitdiff
path: root/chromium/tools/WebViewShell/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/WebViewShell/AndroidManifest.xml')
-rw-r--r--chromium/tools/WebViewShell/AndroidManifest.xml23
1 files changed, 21 insertions, 2 deletions
diff --git a/chromium/tools/WebViewShell/AndroidManifest.xml b/chromium/tools/WebViewShell/AndroidManifest.xml
index 834bc58..77997cd 100644
--- a/chromium/tools/WebViewShell/AndroidManifest.xml
+++ b/chromium/tools/WebViewShell/AndroidManifest.xml
@@ -20,11 +20,12 @@
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="17"
- android:targetSdkVersion="17" />
+ android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
- <application
+ <application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light" >
@@ -36,5 +37,23 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+ <activity
+ android:name=".JankActivity"
+ android:label="@string/title_activity_jank"
+ android:noHistory="true">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".StartupTimeActivity"
+ android:label="@string/title_activity_startup_time"
+ android:noHistory="true">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
</application>
</manifest>