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

Side by Side Diff: remoting/android/java/AndroidManifest.xml.jinja2

Issue 955843002: Android Chromoting: Remove title and add navigation button to disconnect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2311
Patch Set: Created 5 years, 9 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 | remoting/android/java/res/values-v17/styles.xml » ('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 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="{{ APK_PACKAGE_NAME }}"> 3 package="{{ APK_PACKAGE_NAME }}">
4 <uses-sdk android:minSdkVersion="14" 4 <uses-sdk android:minSdkVersion="14"
5 android:targetSdkVersion="21"/> 5 android:targetSdkVersion="21"/>
6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
7 <uses-permission android:name="android.permission.INTERNET"/> 7 <uses-permission android:name="android.permission.INTERNET"/>
8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> 8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
10 <application android:label="@string/product_name_android" 10 <application android:label="@string/product_name_android"
(...skipping 19 matching lines...) Expand all
30 <intent-filter> 30 <intent-filter>
31 <action android:name="android.intent.action.VIEW"/> 31 <action android:name="android.intent.action.VIEW"/>
32 <category android:name="android.intent.category.DEFAULT"/> 32 <category android:name="android.intent.category.DEFAULT"/>
33 <category android:name="android.intent.category.BROWSABLE"/> 33 <category android:name="android.intent.category.BROWSABLE"/>
34 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> 34 <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
35 <data android:path="/oauthredirect/"/> 35 <data android:path="/oauthredirect/"/>
36 </intent-filter> 36 </intent-filter>
37 </activity> 37 </activity>
38 <activity android:name="org.chromium.chromoting.Desktop" 38 <activity android:name="org.chromium.chromoting.Desktop"
39 android:configChanges="orientation|screenSize" 39 android:configChanges="orientation|screenSize"
40 android:theme="@style/BaseTheme.Desktop"
40 android:windowSoftInputMode="adjustResize"/> 41 android:windowSoftInputMode="adjustResize"/>
41 <activity android:name="org.chromium.chromoting.HelpActivity" 42 <activity android:name="org.chromium.chromoting.HelpActivity"
42 android:configChanges="orientation|screenSize" 43 android:configChanges="orientation|screenSize"
43 android:uiOptions="splitActionBarWhenNarrow"/> 44 android:uiOptions="splitActionBarWhenNarrow"/>
44 </application> 45 </application>
45 </manifest> 46 </manifest>
OLDNEW
« no previous file with comments | « no previous file | remoting/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698