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

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

Issue 1127213005: [Android WebView] Add auto-grant permissions to WebViewShell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simpify grant logic Created 5 years, 7 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 | « no previous file | android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewBrowserActivity.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
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 6
7 <manifest 7 <manifest
8 xmlns:android="http://schemas.android.com/apk/res/android" 8 xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.webview_shell" 9 package="org.chromium.webview_shell"
10 android:versionCode="1" 10 android:versionCode="1"
11 android:versionName="1.0" > 11 android:versionName="1.0" >
12 12
13 <uses-sdk android:minSdkVersion="19" 13 <uses-sdk android:minSdkVersion="19"
14 android:targetSdkVersion="22" /> 14 android:targetSdkVersion="22" />
15 15
16 <uses-permission android:name="android.permission.INTERNET" /> 16 <uses-permission android:name="android.permission.INTERNET" />
17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
18 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 18 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
19 <uses-permission android:name="android.permission.CAMERA"/>
20 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
21 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
19 22
20 <application 23 <application
21 android:icon="@drawable/ic_launcher" 24 android:icon="@drawable/ic_launcher"
22 android:label="@string/app_name" 25 android:label="@string/app_name"
23 android:theme="@android:style/Theme.Light" > 26 android:theme="@android:style/Theme.Light" >
24 <activity 27 <activity
25 android:name=".TelemetryActivity" 28 android:name=".TelemetryActivity"
26 android:label="@string/title_activity_telemetry" 29 android:label="@string/title_activity_telemetry"
27 android:exported="true"> 30 android:exported="true">
28 </activity> 31 </activity>
(...skipping 20 matching lines...) Expand all
49 <intent-filter> 52 <intent-filter>
50 <action android:name="android.intent.action.VIEW" /> 53 <action android:name="android.intent.action.VIEW" />
51 <category android:name="android.intent.category.DEFAULT" /> 54 <category android:name="android.intent.category.DEFAULT" />
52 <category android:name="android.intent.category.BROWSABLE" /> 55 <category android:name="android.intent.category.BROWSABLE" />
53 <data android:scheme="http" /> 56 <data android:scheme="http" />
54 <data android:scheme="https" /> 57 <data android:scheme="https" />
55 </intent-filter> 58 </intent-filter>
56 </activity> 59 </activity>
57 </application> 60 </application>
58 </manifest> 61 </manifest>
OLDNEW
« no previous file with comments | « no previous file | android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewBrowserActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698