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

Side by Side Diff: chrome/android/javatests/AndroidManifest.xml

Issue 2133923002: Simplify caller checking logic in WebApkServiceImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into sandbox_on_transact1 Created 4 years, 5 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 | « chrome/android/BUILD.gn ('k') | chrome/android/webapk/DEPS » ('j') | 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 <!-- 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 <!-- package name must be unique. --> 6 <!-- package name must be unique. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.chrome.tests"> 8 package="org.chromium.chrome.tests">
9 9
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker" 53 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker"
54 android:exported="true"/> 54 android:exported="true"/>
55 <!--suppress ExportedReceiver --> 55 <!--suppress ExportedReceiver -->
56 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver"> 56 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver">
57 <intent-filter> 57 <intent-filter>
58 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" > 58 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" >
59 </action> 59 </action>
60 </intent-filter> 60 </intent-filter>
61 </receiver> 61 </receiver>
62
63 <service android:name="org.chromium.chrome.test.webapk.TestWebApkService ImplWrapper"
64 android:exported="true">
65 </service>
62 </application> 66 </application>
63 67
64 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" 68 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner"
65 android:targetPackage="{{manifest_package}}" 69 android:targetPackage="{{manifest_package}}"
66 android:label="Tests for {{manifest_package}}"/> 70 android:label="Tests for {{manifest_package}}"/>
67 </manifest> 71 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/webapk/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698