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

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: Created 4 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 | blimp/client/app/android/blimp_compositor_manager_android.h » ('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="adjustResize" 22 android:windowSoftInputMode="adjustResize"
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 <category android:name="android.intent.category.NOTIFICATION_PRE FERENCES" />
Khushal 2016/03/25 18:59:30 Since we don't post any notifications right now, i
shaktisahu 2016/03/29 19:04:12 Done.
31 </intent-filter>
32 <!-- Matches the common case of intents with no MIME type.
33 Make sure to keep in sync with the next filter. -->
34 <intent-filter>
35 <action android:name="android.intent.action.VIEW" />
36 <category android:name="android.intent.category.DEFAULT" />
37 <category android:name="android.intent.category.BROWSABLE" />
38 <data android:scheme="http" />
Khushal 2016/03/25 18:59:30 We are not handling any of these intents in the ac
shaktisahu 2016/03/29 19:04:12 Done.
39 <data android:scheme="https" />
40 <data android:scheme="about" />
41 <data android:scheme="javascript" />
42 </intent-filter>
43 <!-- Same filter as above but with MIME types. Intents that
44 do not specify a MIME type won't match. -->
45 <intent-filter>
46 <action android:name="android.intent.action.VIEW" />
47 <category android:name="android.intent.category.DEFAULT" />
48 <category android:name="android.intent.category.BROWSABLE" />
49 <data android:scheme="http" />
50 <data android:scheme="https" />
51 <data android:scheme="about" />
52 <data android:scheme="content" />
53 <data android:scheme="javascript" />
54 <data android:mimeType="text/html"/>
55 <data android:mimeType="text/plain"/>
56 <data android:mimeType="application/xhtml+xml"/>
57 </intent-filter>
58 <!-- MHTML support, used for snapshots -->
59 <intent-filter>
60 <action android:name="android.intent.action.VIEW" />
61 <category android:name="android.intent.category.DEFAULT" />
62 <data android:scheme="file" android:mimeType="multipart/related" />
63 </intent-filter>
64 <intent-filter>
65 <action android:name="android.intent.action.MEDIA_SEARCH" />
66 <category android:name="android.intent.category.DEFAULT" />
67 </intent-filter>
68 <intent-filter>
69 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " />
70 <category android:name="android.intent.category.DEFAULT" />
71 </intent-filter>
72 <intent-filter>
73 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
74 <category android:name="android.intent.category.DEFAULT" />
75 <data android:scheme="http" />
76 <data android:scheme="https" />
77 </intent-filter>
78 <intent-filter>
79 <action android:name="android.intent.action.SEARCH" />
80 </intent-filter>
81 <intent-filter>
82 <action android:name="com.sec.android.airview.HOVER" />
27 </intent-filter> 83 </intent-filter>
28 </activity> 84 </activity>
29 85
30 <meta-data android:name="com.google.android.gms.version" 86 <meta-data android:name="com.google.android.gms.version"
31 android:value="@integer/google_play_services_version" /> 87 android:value="@integer/google_play_services_version" />
32 </application> 88 </application>
33 </manifest> 89 </manifest>
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/android/blimp_compositor_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698