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

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

Issue 1894703002: [Offline pages] Removing offline pages from Bookmarks UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marking more methods as visible for testing Created 4 years, 8 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 | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/layout/bookmark_edit.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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 android:windowSoftInputMode="stateHidden" 340 android:windowSoftInputMode="stateHidden"
341 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 341 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
342 <intent-filter> 342 <intent-filter>
343 <action android:name="{{ manifest_package }}.ADDBOOKMARK" /> 343 <action android:name="{{ manifest_package }}.ADDBOOKMARK" />
344 <category android:name="android.intent.category.DEFAULT" /> 344 <category android:name="android.intent.category.DEFAULT" />
345 </intent-filter> 345 </intent-filter>
346 </activity> 346 </activity>
347 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkEd itActivity" 347 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkEd itActivity"
348 android:theme="@style/BookmarkDialogWhite" 348 android:theme="@style/BookmarkDialogWhite"
349 android:windowSoftInputMode="stateHidden" 349 android:windowSoftInputMode="stateHidden"
350 android:label="@string/edit_bookmark"
350 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 351 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
351 </activity> 352 </activity>
352 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dEditFolderActivity" 353 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dEditFolderActivity"
353 android:theme="@style/BookmarkDialogWhite" 354 android:theme="@style/BookmarkDialogWhite"
354 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 355 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
355 </activity> 356 </activity>
356 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo lderSelectActivity" 357 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo lderSelectActivity"
357 android:theme="@style/BookmarkDialogWhite" 358 android:theme="@style/BookmarkDialogWhite"
358 android:windowSoftInputMode="stateAlwaysHidden" 359 android:windowSoftInputMode="stateAlwaysHidden"
359 android:label="@string/bookmark_choose_folder" 360 android:label="@string/bookmark_choose_folder"
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 812 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
812 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 813 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
813 The downstream manifest replaces this block, and hence replaces the list of media route 814 The downstream manifest replaces this block, and hence replaces the list of media route
814 controllers with its own list. --> 815 controllers with its own list. -->
815 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 816 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
816 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 817 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
817 818
818 {% endblock %} 819 {% endblock %}
819 </application> 820 </application>
820 </manifest> 821 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/layout/bookmark_edit.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698