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

Unified Diff: tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml

Issue 1416443003: [tool] SpnegoAuth: add multi account, credential confirmation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments: Refactor AccountData, get rid of statics Created 5 years, 2 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
« no previous file with comments | « tools/android/kerberos/README.md ('k') | tools/android/kerberos/SpnegoAuthenticator/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml
diff --git a/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml b/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml
index efd4f33ec2c6876d2eb37b831c458623561e665b..bb48308fbc3cf8e1f746c7e97491da27a4759521 100644
--- a/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml
+++ b/tools/android/kerberos/SpnegoAuthenticator/AndroidManifest.xml
@@ -9,6 +9,10 @@
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="23" />
+ <!--
+ Deprecated permissions. Normal protection level, autogranted. Needed
+ for API level 22 and before.
+ -->
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
@@ -27,6 +31,14 @@
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/spnego_authenticator" />
dgn 2015/11/11 12:05:31 I tried to remove my code to show the notification
</service>
+
+ <!-- exported=true needed so that chrome can start the activity -->
+ <activity
+ android:exported="true"
+ android:label="@string/title_activity_account_authenticator"
+ android:name=".SpnegoAuthenticatorActivity"
+ android:noHistory="true">
+ </activity>
</application>
</manifest>
« no previous file with comments | « tools/android/kerberos/README.md ('k') | tools/android/kerberos/SpnegoAuthenticator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698