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

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, splitting off dialog logic, etc Created 5 years, 1 month 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 30c1bf0b61e9177bca149927e38878ef4b05fd69..e74f4859fa4b676a5223b12fee9214b0456a84ec 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 -->
@@ -280,6 +281,12 @@ 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.StoragePreferenceActivity"
+ 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.EmbedContentViewActivity"
android:theme="@style/ThemeWithActionBar"
android:hardwareAccelerated="false"

Powered by Google App Engine
This is Rietveld 408576698