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

Unified Diff: chrome/browser/ui/views/location_bar/star_view.cc

Issue 765043002: Bookmark pop-up doesn't open if Ctrl+D is set as keyboard shortcut for added extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/browser/ui/views/location_bar/star_view.cc
diff --git a/chrome/browser/ui/views/location_bar/star_view.cc b/chrome/browser/ui/views/location_bar/star_view.cc
index b5627a0735b8f05de2d9878e4d76c22a671103dd..8315e25d1593c9de55a035a70acd815abce74fb6 100644
--- a/chrome/browser/ui/views/location_bar/star_view.cc
+++ b/chrome/browser/ui/views/location_bar/star_view.cc
@@ -15,8 +15,8 @@
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
-StarView::StarView(CommandUpdater* command_updater)
- : BubbleIconView(command_updater, IDC_BOOKMARK_PAGE) {
+StarView::StarView(CommandUpdater* command_updater, Browser* browser)
+ : BubbleIconView(command_updater, IDC_BOOKMARK_PAGE, browser) {
set_id(VIEW_ID_STAR_BUTTON);
SetToggled(false);
}

Powered by Google App Engine
This is Rietveld 408576698