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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2497313002: android: Don't keep GSA alive if it supports account change broadcasts. (Closed)
Patch Set: Created 4 years, 1 month 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 | chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.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 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <uses-permission android:name="{{ manifest_package }}.permission.C2D_MESSAGE " /> 76 <uses-permission android:name="{{ manifest_package }}.permission.C2D_MESSAGE " />
77 <uses-permission android:name="{{ manifest_package }}.permission.READ_WRITE_ BOOKMARK_FOLDERS" /> 77 <uses-permission android:name="{{ manifest_package }}.permission.READ_WRITE_ BOOKMARK_FOLDERS" />
78 <uses-permission android:name="{{ manifest_package }}.TOS_ACKED" /> 78 <uses-permission android:name="{{ manifest_package }}.TOS_ACKED" />
79 79
80 <uses-permission android:name="com.chrome.permission.DEVICE_EXTRAS" /> 80 <uses-permission android:name="com.chrome.permission.DEVICE_EXTRAS" />
81 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_B OOKMARKS"/> 81 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_B OOKMARKS"/>
82 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_ BOOKMARKS"/> 82 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_ BOOKMARKS"/>
83 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / > 83 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / >
84 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORT CUT"/> 84 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORT CUT"/>
85 85
86 <uses-permission android:name="com.google.android.apps.now.CURRENT_ACCOUNT_A CCESS" />
87
86 {% block extra_uses_permissions %} 88 {% block extra_uses_permissions %}
87 {% endblock %} 89 {% endblock %}
88 90
89 <!-- We may use GPS but it's not required --> 91 <!-- We may use GPS but it's not required -->
90 <uses-feature android:name="android.hardware.location.gps" android:required= "false" /> 92 <uses-feature android:name="android.hardware.location.gps" android:required= "false" />
91 <uses-feature android:name="android.hardware.camera" android:required="false " /> 93 <uses-feature android:name="android.hardware.camera" android:required="false " />
92 94
93 <!-- 95 <!--
94 android.permission.RECORD_AUDIO makes this implied, however we don't 96 android.permission.RECORD_AUDIO makes this implied, however we don't
95 require a microphone. 97 require a microphone.
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 903 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
902 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 904 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
903 The downstream manifest replaces this block, and hence replaces the list of media route 905 The downstream manifest replaces this block, and hence replaces the list of media route
904 controllers with its own list. --> 906 controllers with its own list. -->
905 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 907 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
906 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 908 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
907 909
908 {% endblock %} 910 {% endblock %}
909 </application> 911 </application>
910 </manifest> 912 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698