Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 658 <!-- This activity is to expose the PhysicalWeb Share option via the gen eric Android share action. --> | 658 <!-- This activity is to expose the PhysicalWeb Share option via the gen eric Android share action. --> |
| 659 <activity | 659 <activity |
| 660 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha reEntryActivity" | 660 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha reEntryActivity" |
| 661 android:label="@string/physical_web_share_entry_title" | 661 android:label="@string/physical_web_share_entry_title" |
| 662 android:excludeFromRecents="true" | 662 android:excludeFromRecents="true" |
| 663 android:noHistory="true" | 663 android:noHistory="true" |
| 664 android:theme="@android:style/Theme.Translucent.NoTitleBar" | 664 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
| 665 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > | 665 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 666 </activity> | 666 </activity> |
| 667 | 667 |
| 668 <!-- Activities for browser action --> | |
|
Yusuf
2017/03/31 23:43:12
Lets use BrowserActions everywhere as the feature
ltian
2017/04/03 19:22:03
Done.
| |
| 669 {% if channel in ['default'] %} | |
| 670 <activity android:name="org.chromium.chrome.browser.browseraction.Browse rActionActivity" | |
| 671 android:theme="@style/FullscreenTransparentActivityTheme" | |
| 672 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> | |
| 673 <intent-filter> | |
| 674 <action android:name="android.support.customtabs.browser_action_ open" /> | |
| 675 <category android:name="android.intent.category.DEFAULT" /> | |
| 676 <data android:scheme="http" /> | |
| 677 <data android:scheme="https" /> | |
| 678 </intent-filter> | |
| 679 </activity> | |
| 680 {% endif %} | |
| 681 | |
| 668 <!-- Service for Broadcasting a Physical Web URL --> | 682 <!-- Service for Broadcasting a Physical Web URL --> |
| 669 <service | 683 <service |
| 670 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService" | 684 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService" |
| 671 android:exported="false"> | 685 android:exported="false"> |
| 672 </service> | 686 </service> |
| 673 | 687 |
| 674 <!-- Providers for chrome data. --> | 688 <!-- Providers for chrome data. --> |
| 675 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" | 689 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" |
| 676 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" | 690 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" |
| 677 android:exported="true"> | 691 android:exported="true"> |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 979 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 993 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 980 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 994 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
| 981 The downstream manifest replaces this block, and hence replaces the list of media route | 995 The downstream manifest replaces this block, and hence replaces the list of media route |
| 982 controllers with its own list. --> | 996 controllers with its own list. --> |
| 983 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 997 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 984 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 998 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 985 | 999 |
| 986 {% endblock %} | 1000 {% endblock %} |
| 987 </application> | 1001 </application> |
| 988 </manifest> | 1002 </manifest> |
| OLD | NEW |