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

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

Issue 1154333002: Change WebView package name to be same with system one (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | 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.google.android.webview')}}">
10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}" 10 <uses-sdk android:minSdkVersion="{{minsdk|default(21)}}"
11 android:targetSdkVersion="{{targetsdk|default(21)}}"> 11 android:targetSdkVersion="{{targetsdk|default(21)}}">
12 </uses-sdk> 12 </uses-sdk>
13 13
14 <uses-feature android:name="android.hardware.touchscreen" 14 <uses-feature android:name="android.hardware.touchscreen"
15 android:required="false"/> 15 android:required="false"/>
16 16
17 <application android:label="Android System WebView" 17 <application android:label="Android System WebView"
18 android:icon="@drawable/icon_webview" 18 android:icon="@drawable/icon_webview"
19 android:multiArch="true"> 19 android:multiArch="true">
20 <activity android:name="com.android.webview.chromium.LicenseActivity" 20 <activity android:name="com.android.webview.chromium.LicenseActivity"
21 android:label="@string/license_activity_title" 21 android:label="@string/license_activity_title"
22 > 22 >
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" 33 <meta-data android:name="com.android.webview.WebViewLibrary"
34 android:value="libwebviewchromium.so" /> 34 android:value="libwebviewchromium.so" />
35 </application> 35 </application>
36 </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