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

Side by Side Diff: android_webview/tools/WebViewShell/AndroidManifest.xml

Issue 1070563005: [Android WebView] Upstream WebViewShell to chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix copyright year Created 5 years, 8 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 | « android_webview/android_webview_shell.gyp ('k') | android_webview/tools/WebViewShell/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
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
4 * found in the LICENSE file.
5 -->
6
7 <manifest
8 xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.webview_shell"
10 android:versionCode="1"
11 android:versionName="1.0" >
12
13 <uses-sdk android:minSdkVersion="19"
14 android:targetSdkVersion="22" />
15
16 <uses-permission android:name="android.permission.INTERNET" />
17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
18
19 <application
20 android:icon="@drawable/ic_launcher"
21 android:label="@string/app_name"
22 android:theme="@android:style/Theme.Light" >
23 <activity
24 android:name=".TelemetryActivity"
25 android:label="@string/title_activity_telemetry"
26 android:exported="true">
27 </activity>
28 <activity
29 android:name=".JankActivity"
30 android:label="@string/title_activity_jank"
31 android:noHistory="true"
32 android:exported="true">
33 </activity>
34 <activity
35 android:name=".StartupTimeActivity"
36 android:label="@string/title_activity_startup_time"
37 android:noHistory="true"
38 android:exported="true">
39 </activity>
40 <activity
41 android:name=".WebViewBrowserActivity"
42 android:label="@string/title_activity_browser"
43 android:exported="true">
44 <intent-filter>
45 <action android:name="android.intent.action.VIEW" />
46 <category android:name="android.intent.category.DEFAULT" />
47 <category android:name="android.intent.category.BROWSABLE" />
48 <data android:scheme="http" />
49 <data android:scheme="https" />
50 </intent-filter>
51 </activity>
52 </application>
53 </manifest>
OLDNEW
« no previous file with comments | « android_webview/android_webview_shell.gyp ('k') | android_webview/tools/WebViewShell/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698