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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 1075883002: Add flag to WebView apks specifying that these apks contain WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="{{package|default('com.android.webview')}}"> 9 package="{{package|default('com.android.webview')}}">
10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" 10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}"
(...skipping 12 matching lines...) Expand all
23 <intent-filter> 23 <intent-filter>
24 <action android:name="android.settings.WEBVIEW_LICENSE" /> 24 <action android:name="android.settings.WEBVIEW_LICENSE" />
25 <category android:name="android.intent.category.DEFAULT" /> 25 <category android:name="android.intent.category.DEFAULT" />
26 </intent-filter> 26 </intent-filter>
27 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO LLED" 27 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTRO LLED"
28 android:value="true" /> 28 android:value="true" />
29 </activity> 29 </activity>
30 <provider android:name="com.android.webview.chromium.LicenseContentProvi der" 30 <provider android:name="com.android.webview.chromium.LicenseContentProvi der"
31 android:exported="true" 31 android:exported="true"
32 android:authorities="com.android.webview.chromium.LicenseConte ntProvider" /> 32 android:authorities="com.android.webview.chromium.LicenseConte ntProvider" />
33 <meta-data android:name="com.android.webview.WebViewLibrary"
34 android:value="libwebviewchromium.so" />
33 </application> 35 </application>
34 </manifest> 36 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698