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

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

Issue 1694093003: Rename EnhancedBookmarks to Bookmarks, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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 | « WATCHLISTS ('k') | chrome/android/java/res/color/bookmark_drawer_text_color.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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi vity" 271 <activity android:name="org.chromium.chrome.browser.EmbedContentViewActi vity"
272 android:theme="@style/ThemeWithActionBar" 272 android:theme="@style/ThemeWithActionBar"
273 android:hardwareAccelerated="false" 273 android:hardwareAccelerated="false"
274 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"> 274 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc">
275 </activity> 275 </activity>
276 <activity android:name="org.chromium.chrome.browser.prerender.PrerenderA PITestActivity" 276 <activity android:name="org.chromium.chrome.browser.prerender.PrerenderA PITestActivity"
277 android:theme="@style/MainTheme" 277 android:theme="@style/MainTheme"
278 android:exported="true"> 278 android:exported="true">
279 </activity> 279 </activity>
280 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAc tivity" 280 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAc tivity"
281 android:theme="@style/EnhancedBookmarkDialog" 281 android:theme="@style/BookmarkDialog"
282 android:windowSoftInputMode="stateAlwaysHidden" 282 android:windowSoftInputMode="stateAlwaysHidden"
283 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 283 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
284 </activity> 284 </activity>
285 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dActivity" 285 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dActivity"
286 android:theme="@style/EnhancedBookmarkDialogWhite" 286 android:theme="@style/BookmarkDialogWhite"
287 android:windowSoftInputMode="stateHidden" 287 android:windowSoftInputMode="stateHidden"
288 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 288 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
289 <intent-filter> 289 <intent-filter>
290 <action android:name="{{ manifest_package }}.ADDBOOKMARK" /> 290 <action android:name="{{ manifest_package }}.ADDBOOKMARK" />
291 <category android:name="android.intent.category.DEFAULT" /> 291 <category android:name="android.intent.category.DEFAULT" />
292 </intent-filter> 292 </intent-filter>
293 </activity> 293 </activity>
294 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkEd itActivity" 294 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkEd itActivity"
295 android:theme="@style/EnhancedBookmarkDialogWhite" 295 android:theme="@style/BookmarkDialogWhite"
296 android:windowSoftInputMode="stateHidden" 296 android:windowSoftInputMode="stateHidden"
297 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 297 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
298 </activity> 298 </activity>
299 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dEditFolderActivity" 299 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkAd dEditFolderActivity"
300 android:theme="@style/EnhancedBookmarkDialogWhite" 300 android:theme="@style/BookmarkDialogWhite"
301 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 301 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
302 </activity> 302 </activity>
303 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo lderSelectActivity" 303 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkFo lderSelectActivity"
304 android:theme="@style/EnhancedBookmarkDialogWhite" 304 android:theme="@style/BookmarkDialogWhite"
305 android:windowSoftInputMode="stateAlwaysHidden" 305 android:windowSoftInputMode="stateAlwaysHidden"
306 android:label="@string/enhanced_bookmark_choose_folder" 306 android:label="@string/bookmark_choose_folder"
307 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 307 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
308 </activity> 308 </activity>
309 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkSi gninActivity" 309 <activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkSi gninActivity"
310 android:theme="@style/EnhancedBookmarkDialogWhite" 310 android:theme="@style/BookmarkDialogWhite"
311 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 311 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
312 </activity> 312 </activity>
313 313
314 <!-- 314 <!--
315 Activities for webapps. 315 Activities for webapps.
316 TODO(dfalcantara): Remove the aliases for the WebappActivities once we're pretty sure 316 TODO(dfalcantara): Remove the aliases for the WebappActivities once we're pretty sure
317 that users don't have any instances of the origin al Activity still 317 that users don't have any instances of the origin al Activity still
318 running. 318 running.
319 --> 319 -->
320 <activity android:name="org.chromium.chrome.browser.webapps.WebappLaunch erActivity" 320 <activity android:name="org.chromium.chrome.browser.webapps.WebappLaunch erActivity"
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 724 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
725 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 725 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
726 The downstream manifest replaces this block, and hence replaces the list of media route 726 The downstream manifest replaces this block, and hence replaces the list of media route
727 controllers with its own list. --> 727 controllers with its own list. -->
728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
730 730
731 {% endblock %} 731 {% endblock %}
732 </application> 732 </application>
733 </manifest> 733 </manifest>
OLDNEW
« no previous file with comments | « WATCHLISTS ('k') | chrome/android/java/res/color/bookmark_drawer_text_color.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698