Chromium Code Reviews| Index: chrome/android/java/AndroidManifest.xml |
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
| index 9065300b695bee02dfedde47039dfd27a452f695..9cba93f07009150f2f25fccef6d582853ea28a6e 100644 |
| --- a/chrome/android/java/AndroidManifest.xml |
| +++ b/chrome/android/java/AndroidManifest.xml |
| @@ -107,6 +107,7 @@ by a child template that "extends" this file. |
| android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" |
| {% endblock %} |
| android:supportsRtl="true" |
| + android:manageSpaceActivity="@string/manage_space_activity" |
| {% block extra_application_attributes %}{% endblock %}> |
| <!-- Samsung MultiWindow Support --> |
| @@ -323,6 +324,13 @@ by a child template that "extends" this file. |
| android:label="@string/preferences" |
| android:exported="false"> |
| </activity> |
| + <activity android:name="org.chromium.chrome.browser.preferences.website.ManageSpaceActivity" |
| + android:theme="@style/PreferencesTheme" |
| + android:icon="@mipmap/app_icon" |
|
Ted C
2016/06/09 23:43:19
you shouldn't need the icon as it is defined at th
dmurph
2016/06/10 23:52:05
Done.
|
| + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize" |
| + android:label="@string/storage_management_activity_label" |
| + android:exported="false"> |
| + </activity> |
| <activity android:name="org.chromium.chrome.browser.EmbedContentViewActivity" |
| android:theme="@style/ThemeWithActionBar" |
| android:hardwareAccelerated="false" |