| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" | 254 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc
tivity" |
| 255 android:theme="@style/MainTheme" | 255 android:theme="@style/MainTheme" |
| 256 android:autoRemoveFromRecents="true"> | 256 android:autoRemoveFromRecents="true"> |
| 257 </activity> | 257 </activity> |
| 258 <activity android:name="org.chromium.chrome.browser.bookmark.ManageBookm
arkActivity" | 258 <activity android:name="org.chromium.chrome.browser.bookmark.ManageBookm
arkActivity" |
| 259 android:theme="@style/DialogWhenLargeHolo" | 259 android:theme="@style/DialogWhenLargeHolo" |
| 260 android:label="@string/save_bookmark" | 260 android:label="@string/save_bookmark" |
| 261 android:windowSoftInputMode="stateHidden|adjustPan" | 261 android:windowSoftInputMode="stateHidden|adjustPan" |
| 262 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> | 262 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc"> |
| 263 <intent-filter> | 263 <intent-filter> |
| 264 <action android:name="android.intent.action.VIEW" /> | |
| 265 <category android:name="android.intent.category.DEFAULT" /> | |
| 266 <category android:name="android.intent.category.BROWSABLE" /> | |
| 267 <data android:scheme="chrome" android:host="editbookmark" /> | |
| 268 </intent-filter> | |
| 269 <intent-filter> | |
| 270 <!-- This is sent by the BrowserProviderProxy as a result of | 264 <!-- This is sent by the BrowserProviderProxy as a result of |
| 271 calls to android.provider.Browser.saveBookmark(). --> | 265 calls to android.provider.Browser.saveBookmark(). --> |
| 272 <action android:name="{{ manifest_package }}.ADDBOOKMARK" /> | 266 <action android:name="{{ manifest_package }}.ADDBOOKMARK" /> |
| 273 <category android:name="android.intent.category.DEFAULT" /> | 267 <category android:name="android.intent.category.DEFAULT" /> |
| 274 </intent-filter> | 268 </intent-filter> |
| 275 </activity> | 269 </activity> |
| 276 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct
ivity" | 270 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct
ivity" |
| 277 android:theme="@style/DialogWhenLarge" | 271 android:theme="@style/DialogWhenLarge" |
| 278 android:label="@string/fre_label" | 272 android:label="@string/fre_label" |
| 279 android:launchMode="singleTop" | 273 android:launchMode="singleTop" |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 674 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 681 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 675 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 682 The downstream manifest replaces this block, and hence replaces the
list of media route | 676 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 683 controllers with its own list. --> | 677 controllers with its own list. --> |
| 684 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 678 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 685 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 679 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 686 | 680 |
| 687 {% endblock %} | 681 {% endblock %} |
| 688 </application> | 682 </application> |
| 689 </manifest> | 683 </manifest> |
| OLD | NEW |