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

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

Issue 2062083002: Implements the Lightweight First Run Experience (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 4 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 android:windowBackground="@drawable/window_background" 297 android:windowBackground="@drawable/window_background"
298 android:windowSoftInputMode="adjustResize" 298 android:windowSoftInputMode="adjustResize"
299 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 299 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
300 android:hardwareAccelerated="false"> 300 android:hardwareAccelerated="false">
301 </activity> 301 </activity>
302 302
303 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity" 303 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity"
304 android:theme="@style/MainTheme" 304 android:theme="@style/MainTheme"
305 android:autoRemoveFromRecents="true"> 305 android:autoRemoveFromRecents="true">
306 </activity> 306 </activity>
307 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight FirstRunActivity"
308 android:theme="@style/LightweightFreDialog"
309 android:launchMode="singleTop"
310 android:windowSoftInputMode="stateHidden|adjustPan"
311 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
312 </activity>
307 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" 313 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity"
308 android:theme="@style/DialogWhenLarge" 314 android:theme="@style/DialogWhenLarge"
309 android:label="@string/fre_label" 315 android:label="@string/fre_label"
310 android:launchMode="singleTop" 316 android:launchMode="singleTop"
311 android:windowSoftInputMode="stateHidden|adjustPan" 317 android:windowSoftInputMode="stateHidden|adjustPan"
312 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 318 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
313 </activity> 319 </activity>
314 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" 320 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity"
315 android:theme="@style/MainTheme" 321 android:theme="@style/MainTheme"
316 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 322 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 830 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
825 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 831 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
826 The downstream manifest replaces this block, and hence replaces the list of media route 832 The downstream manifest replaces this block, and hence replaces the list of media route
827 controllers with its own list. --> 833 controllers with its own list. -->
828 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 834 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
829 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 835 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
830 836
831 {% endblock %} 837 {% endblock %}
832 </application> 838 </application>
833 </manifest> 839 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698