File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
android/java/org/chromium/chrome/browser Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2417,9 +2417,9 @@ public void addOrEditBookmark(final Tab tabToBookmark) {
2417
2417
((TabBookmarker ) mTabBookmarkerSupplier .get ()).addOrEditBookmark (tabToBookmark );
2418
2418
}
2419
2419
2420
- public void showBookmarkManager (Profile profile ) {
2420
+ public void showBookmarkManager (Profile profile , Tab currentTab ) {
2421
2421
if (mBookmarkManagerOpenerSupplier .get () != null ) {
2422
- mBookmarkManagerOpenerSupplier .get ().showBookmarkManager (this , profile );
2422
+ mBookmarkManagerOpenerSupplier .get ().showBookmarkManager (this , currentTab , profile );
2423
2423
}
2424
2424
}
2425
2425
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ public boolean onMenuItemClick(MenuItem item) {
157
157
});
158
158
return true ;
159
159
} else if (id == R .id .view_bookmarks ) {
160
- activity .showBookmarkManager (currentTab .getProfile ());
160
+ activity .showBookmarkManager (currentTab .getProfile (), currentTab );
161
161
return true ;
162
162
}
163
163
return false ;
You can’t perform that action at this time.
0 commit comments