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

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

Issue 1440363002: Use GoogleAuthUtil's getToken instead of AccountManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 5 years, 1 month 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
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 12 matching lines...) Expand all
23 android:authorities="org.chromium.chrome.test.TestContentProvider" 23 android:authorities="org.chromium.chrome.test.TestContentProvider"
24 android:exported="true" /> 24 android:exported="true" />
25 25
26 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider" 26 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider"
27 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsProvider" 27 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsProvider"
28 android:exported="true" /> 28 android:exported="true" />
29 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsDelayedProvider" 29 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsDelayedProvider"
30 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsDelayedProvider" 30 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsDelayedProvider"
31 android:exported="true" /> 31 android:exported="true" />
32 32
33 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials PermissionActivity"
34 android:exported="true">
35 <intent-filter>
36 <action android:name="android.intent.action.VIEW" />
37 <category android:name="android.intent.category.DEFAULT" />
38 </intent-filter>
39 </activity>
40
41 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab ExternalNavigationTest$DummyActivityForSpecialScheme" 33 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab ExternalNavigationTest$DummyActivityForSpecialScheme"
42 android:exported="true" > 34 android:exported="true" >
43 <intent-filter> 35 <intent-filter>
44 <action android:name="android.intent.action.VIEW" /> 36 <action android:name="android.intent.action.VIEW" />
45 <category android:name="android.intent.category.DEFAULT" /> 37 <category android:name="android.intent.category.DEFAULT" />
46 <category android:name="android.intent.category.BROWSABLE" /> 38 <category android:name="android.intent.category.BROWSABLE" />
47 <data android:host="customtabtest" android:scheme="customtab" /> 39 <data android:host="customtabtest" android:scheme="customtab" />
48 </intent-filter> 40 </intent-filter>
49 </activity> 41 </activity>
50 42
(...skipping 15 matching lines...) Expand all
66 <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" >
67 </action> 59 </action>
68 </intent-filter> 60 </intent-filter>
69 </receiver> 61 </receiver>
70 </application> 62 </application>
71 63
72 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" 64 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner"
73 android:targetPackage="{{manifest_package}}" 65 android:targetPackage="{{manifest_package}}"
74 android:label="Tests for {{manifest_package}}"/> 66 android:label="Tests for {{manifest_package}}"/>
75 </manifest> 67 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698