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

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

Issue 1412423007: Modify Physical Web Nearby URLs list to resemble search results (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wip (fix maxLines->singleLine) Created 5 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/res/layout/physical_web_list_item_nearby_url.xml » ('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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 android:launchMode="singleInstance" 400 android:launchMode="singleInstance"
401 android:exported="false" 401 android:exported="false"
402 android:theme="@android:style/Theme.NoDisplay" 402 android:theme="@android:style/Theme.NoDisplay"
403 android:excludeFromRecents="true" 403 android:excludeFromRecents="true"
404 android:process=":browser_restart_process"> 404 android:process=":browser_restart_process">
405 </activity> 405 </activity>
406 406
407 <!-- Activity to list Physical Web Urls --> 407 <!-- Activity to list Physical Web Urls -->
408 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity" 408 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity"
409 android:label="@string/physical_web_list_urls_activity_title" 409 android:label="@string/physical_web_list_urls_activity_title"
410 android:theme="@style/PhysicalWebNearbyUrlsListStyle"
410 android:exported="false"> 411 android:exported="false">
411 </activity> 412 </activity>
412 413
413 <!-- Providers for chrome data. --> 414 <!-- Providers for chrome data. -->
414 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r" 415 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r"
415 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 416 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
416 android:exported="true"> 417 android:exported="true">
417 <path-permission android:path="/bookmarks/search_suggest_query" 418 <path-permission android:path="/bookmarks/search_suggest_query"
418 android:readPermission="android.permission.GLOBAL_SEARCH" /> 419 android:readPermission="android.permission.GLOBAL_SEARCH" />
419 </provider> 420 </provider>
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 672 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
672 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 673 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
673 The downstream manifest replaces this block, and hence replaces the list of media route 674 The downstream manifest replaces this block, and hence replaces the list of media route
674 controllers with its own list. --> 675 controllers with its own list. -->
675 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 676 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
676 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 677 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
677 678
678 {% endblock %} 679 {% endblock %}
679 </application> 680 </application>
680 </manifest> 681 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/physical_web_list_item_nearby_url.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698