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

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: rebase Created 4 years, 5 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 | « no previous file | chrome/android/java/res/layout/lightweight_fre_tos.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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 android:exported="false" 316 android:exported="false"
317 android:windowSoftInputMode="adjustResize" 317 android:windowSoftInputMode="adjustResize"
318 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 318 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
319 android:hardwareAccelerated="false"> 319 android:hardwareAccelerated="false">
320 </activity> 320 </activity>
321 321
322 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity" 322 <activity android:name="org.chromium.chrome.browser.sync.ui.PassphraseAc tivity"
323 android:theme="@style/MainTheme" 323 android:theme="@style/MainTheme"
324 android:autoRemoveFromRecents="true"> 324 android:autoRemoveFromRecents="true">
325 </activity> 325 </activity>
326 <activity android:name="org.chromium.chrome.browser.firstrun.Lightweight FirstRunActivity"
327 android:theme="@style/LightweightFreDialog"
328 android:launchMode="singleTop"
329 android:windowSoftInputMode="stateHidden|adjustPan"
330 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
331 </activity>
326 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity" 332 <activity android:name="org.chromium.chrome.browser.firstrun.FirstRunAct ivity"
327 android:theme="@style/DialogWhenLarge" 333 android:theme="@style/DialogWhenLarge"
328 android:label="@string/fre_label" 334 android:label="@string/fre_label"
329 android:launchMode="singleTop" 335 android:launchMode="singleTop"
330 android:windowSoftInputMode="stateHidden|adjustPan" 336 android:windowSoftInputMode="stateHidden|adjustPan"
331 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 337 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
332 </activity> 338 </activity>
333 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity" 339 <activity android:name="org.chromium.chrome.browser.signin.AccountSignin Activity"
334 android:theme="@style/MainTheme" 340 android:theme="@style/MainTheme"
335 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"> 341 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize">
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 845 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
840 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 846 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
841 The downstream manifest replaces this block, and hence replaces the list of media route 847 The downstream manifest replaces this block, and hence replaces the list of media route
842 controllers with its own list. --> 848 controllers with its own list. -->
843 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 849 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
844 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 850 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
845 851
846 {% endblock %} 852 {% endblock %}
847 </application> 853 </application>
848 </manifest> 854 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/lightweight_fre_tos.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698