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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 1840513002: Redesign sign in and sign in confirmation screens for Narnia 2.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 6c77785e780fa02f13647f78f11e8df81dbad471..1b1641edbba23908cbf9987e6ed0a74e7619e8ff 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -299,11 +299,13 @@ by a child template that "extends" this file.
android:label="@string/fre_label"
android:launchMode="singleTop"
android:windowSoftInputMode="stateHidden|adjustPan"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
+ android:screenOrientation="portrait"
+ android:configChanges="keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
newt (away) 2016/04/01 23:43:10 please leave "orientation" in this list for consis
gogerald1 2016/04/12 01:21:10 Done.
</activity>
<activity android:name="org.chromium.chrome.browser.signin.AccountSigninActivity"
android:theme="@style/MainTheme"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
+ android:screenOrientation="portrait"
+ android:configChanges="keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
</activity>
<activity android:name="org.chromium.chrome.browser.preferences.Preferences"
android:theme="@style/PreferencesTheme"
@@ -351,7 +353,8 @@ by a child template that "extends" this file.
</activity>
<activity android:name="org.chromium.chrome.browser.bookmarks.BookmarkSigninActivity"
android:theme="@style/BookmarkDialogWhite"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
+ android:screenOrientation="portrait"
+ android:configChanges="keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
</activity>
<!--

Powered by Google App Engine
This is Rietveld 408576698