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

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

Issue 1465363002: [Storage] Android - ManageSpace UI, Important Origins, and CBD Dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments, working Created 4 years, 8 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 1bc8c3ed75ab8c2f883a4edfd60dede4dc8d235f..1d1500804e892b4070e1e3c8a05282979b6088e5 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -103,6 +103,7 @@ by a child template that "extends" this file.
android:largeHeap="false"
android:allowBackup="false"
android:supportsRtl="true"
+ android:manageSpaceActivity="@string/manage_space_activity"
{% block extra_application_attributes %}{% endblock %}>
<!-- Samsung MultiWindow Support -->
@@ -321,6 +322,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"
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc"
Theresa 2016/04/27 21:10:57 This should also handle sreenLayout and smallestSc
dmurph 2016/04/29 23:53:47 Done.
+ 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"

Powered by Google App Engine
This is Rietveld 408576698