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

Unified Diff: chrome/android/javatests/AndroidManifest.xml

Issue 1258563005: Added Signin Utilities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed John's Comments #2 Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/AndroidManifest.xml
diff --git a/chrome/android/javatests/AndroidManifest.xml b/chrome/android/javatests/AndroidManifest.xml
index 5030386ab3991214f9557c3188463048d6d20d9e..cfe8cda1287bce31d2bfe35ca781fe836b53e8fd 100644
--- a/chrome/android/javatests/AndroidManifest.xml
+++ b/chrome/android/javatests/AndroidManifest.xml
@@ -5,7 +5,8 @@
<!-- package name must be unique. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.chrome.tests">
+ package="org.chromium.chrome.tests"
+ android:sharedUserId="org.chromium.chrome" >
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
@@ -13,9 +14,10 @@
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<application
- android:label="ChromePublicTest">
+ android:label="ChromePublicTest" >
<uses-library android:name="android.test.runner" />
@@ -67,7 +69,20 @@
</action>
</intent-filter>
</receiver>
- </application>
+
+ <!-- Account Authenticator Service -->
+ <service
+ android:name="org.chromium.chrome.test.services.accountauthenticator.AccountAuthenticatorService"
+ android:exported="false" >
+ <intent-filter>
+ <action android:name="android.accounts.AccountAuthenticator" />
+ </intent-filter>
+
+ <meta-data
+ android:name="android.accounts.AccountAuthenticator"
+ android:resource="@xml/authenticator" />
+ </service>
+ </application>
<instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentationTestRunner"
android:targetPackage="{{manifest_package}}"

Powered by Google App Engine
This is Rietveld 408576698