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

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

Issue 1182083005: Re-engineer edit screen in enhanced bookmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove description code in native, use new UI wedgit Created 5 years, 6 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
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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 </activity> 272 </activity>
273 <activity android:name="org.chromium.chrome.browser.prerender.PrerenderA PITestActivity" 273 <activity android:name="org.chromium.chrome.browser.prerender.PrerenderA PITestActivity"
274 android:theme="@style/MainTheme" 274 android:theme="@style/MainTheme"
275 android:exported="true"> 275 android:exported="true">
276 </activity> 276 </activity>
277 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkActivity" 277 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkActivity"
278 android:theme="@style/EnhancedBookmarkDialogWhite" 278 android:theme="@style/EnhancedBookmarkDialogWhite"
279 android:windowSoftInputMode="stateHidden" 279 android:windowSoftInputMode="stateHidden"
280 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 280 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
281 </activity> 281 </activity>
282 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkDetailActivity" 282 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkEditActivity"
283 android:theme="@style/EnhancedBookmarkDialogWhite" 283 android:theme="@style/EnhancedBookmarkDialogWhite"
284 android:label="@string/edit_bookmark"
284 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 285 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
285 </activity> 286 </activity>
286 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkAddEditFolderActivity" 287 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkAddEditFolderActivity"
287 android:theme="@style/EnhancedBookmarkDialogWhite" 288 android:theme="@style/EnhancedBookmarkDialogWhite"
288 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 289 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
289 </activity> 290 </activity>
290 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkFolderSelectActivity" 291 <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.En hancedBookmarkFolderSelectActivity"
291 android:theme="@style/EnhancedBookmarkDialogWhite" 292 android:theme="@style/EnhancedBookmarkDialogWhite"
292 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" > 293 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" >
293 </activity> 294 </activity>
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 584
584 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 585 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
585 android:value="org.chromium.content.browser.SmartClipProvider"/> 586 android:value="org.chromium.content.browser.SmartClipProvider"/>
586 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER" 587 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER"
587 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" /> 588 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" />
588 589
589 {% block extra_application_definitions %} 590 {% block extra_application_definitions %}
590 {% endblock %} 591 {% endblock %}
591 </application> 592 </application>
592 </manifest> 593 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/java/strings/android_chrome_strings.grd ('k') | chrome/android/java_staging/res/layout/eb_edit.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698