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

Side by Side Diff: blimp/client/app/android/AndroidManifest.xml.jinja2

Issue 1814693003: Added support to blimp to be usable as a default browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handled onNewIntent for new intents Created 4 years, 8 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 | blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java » ('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 2
3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. --> 5 found in the LICENSE file. -->
6 6
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="{{manifest_package}}"> 8 package="{{manifest_package}}">
9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> 11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
12 <uses-permission android:name="android.permission.INTERNET"/> 12 <uses-permission android:name="android.permission.INTERNET"/>
13 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 13 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15 <application android:name="org.chromium.blimp.BlimpApplication" 15 <application android:name="org.chromium.blimp.BlimpApplication"
16 android:label="Blimp" 16 android:label="Blimp"
17 android:icon="@mipmap/app_icon"> 17 android:icon="@mipmap/app_icon">
18 <activity android:name="org.chromium.blimp.BlimpRendererActivity" 18 <activity android:name="org.chromium.blimp.BlimpRendererActivity"
19 android:launchMode="singleTask" 19 android:launchMode="singleTask"
20 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 20 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
22 android:windowSoftInputMode="adjustNothing" 22 android:windowSoftInputMode="adjustNothing"
23 android:hardwareAccelerated="true"> 23 android:hardwareAccelerated="true">
24 <intent-filter> 24 <intent-filter>
25 <action android:name="android.intent.action.MAIN"/> 25 <action android:name="android.intent.action.MAIN" />
26 <category android:name="android.intent.category.LAUNCHER"/> 26 <category android:name="android.intent.category.DEFAULT" />
27 <category android:name="android.intent.category.LAUNCHER" />
28 <category android:name="android.intent.category.BROWSABLE" />
29 <category android:name="android.intent.category.APP_BROWSER" />
30 </intent-filter>
31 <intent-filter>
32 <action android:name="android.intent.action.VIEW" />
33 <category android:name="android.intent.category.DEFAULT" />
34 <category android:name="android.intent.category.BROWSABLE" />
35 <data android:scheme="http" />
36 <data android:scheme="https" />
27 </intent-filter> 37 </intent-filter>
28 </activity> 38 </activity>
29 39
30 <meta-data android:name="com.google.android.gms.version" 40 <meta-data android:name="com.google.android.gms.version"
31 android:value="@integer/google_play_services_version" /> 41 android:value="@integer/google_play_services_version" />
32 </application> 42 </application>
33 </manifest> 43 </manifest>
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698