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

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

Issue 1641983002: Handle ADDBOOKMARK intent with enhanced bookmarks UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ian's comments Created 4 years, 11 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkActivityBase.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 6e84b18bf772d180960749fe82eeea46013eef9d..cacf0309cb1cd42ccb70ccbeb07b1cab50ef78ee 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -260,12 +260,6 @@ by a child template that "extends" this file.
android:label="@string/save_bookmark"
android:windowSoftInputMode="stateHidden|adjustPan"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc">
- <intent-filter>
- <!-- This is sent by the BrowserProviderProxy as a result of
- calls to android.provider.Browser.saveBookmark(). -->
- <action android:name="{{ manifest_package }}.ADDBOOKMARK" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
</activity>
<activity android:name="org.chromium.chrome.browser.firstrun.FirstRunActivity"
android:theme="@style/DialogWhenLarge"
@@ -294,6 +288,15 @@ by a child template that "extends" this file.
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc" >
</activity>
+ <activity android:name="org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkAddActivity"
+ android:theme="@style/EnhancedBookmarkDialogWhite"
+ android:windowSoftInputMode="stateHidden"
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc" >
+ <intent-filter>
+ <action android:name="{{ manifest_package }}.ADDBOOKMARK" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
<activity android:name="org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkEditActivity"
android:theme="@style/EnhancedBookmarkDialogWhite"
android:windowSoftInputMode="stateHidden"
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkActivityBase.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698