Chromium Code Reviews| Index: chrome/android/java/AndroidManifest.xml |
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
| index 30c1bf0b61e9177bca149927e38878ef4b05fd69..548b931fcf4788a50bc937210c1fb76085379842 100644 |
| --- a/chrome/android/java/AndroidManifest.xml |
| +++ b/chrome/android/java/AndroidManifest.xml |
| @@ -100,6 +100,7 @@ by a child template that "extends" this file. |
| android:largeHeap="false" |
| android:allowBackup="false" |
| android:supportsRtl="true" |
| + android:manageSpaceActivity="org.chromium.chrome.browser.preferences.website.StoragePreferenceActivity" |
| {% block extra_application_attributes %}{% endblock %}> |
| <!-- Samsung MultiWindow Support --> |
| @@ -274,6 +275,12 @@ by a child template that "extends" this file. |
| android:windowSoftInputMode="stateHidden|adjustPan" |
| android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc"> |
| </activity> |
| + <activity android:name="org.chromium.chrome.browser.preferences.website.StoragePreferenceActivity" |
|
newt (away)
2015/11/25 15:56:25
nit: I'd put this just below Preferences, since it
dmurph
2015/11/25 23:47:45
Done.
|
| + android:theme="@style/PreferencesTheme" |
| + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc" |
| + android:label="@string/preferences" |
| + android:exported="false"> |
| + </activity> |
| <activity android:name="org.chromium.chrome.browser.preferences.Preferences" |
| android:theme="@style/PreferencesTheme" |
| android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc" |