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

Unified Diff: chrome/browser/cocoa/extension_installed_bubble_controller.mm

Issue 2998004: [Mac] Simplify getting page-action info-bubble point. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 5 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/browser/cocoa/extension_installed_bubble_controller.mm
diff --git a/chrome/browser/cocoa/extension_installed_bubble_controller.mm b/chrome/browser/cocoa/extension_installed_bubble_controller.mm
index 69046eceead98611d7eeacc09ddcceba3756a16d..511fba407c75bebaf9469101536382a0b8a38a46 100644
--- a/chrome/browser/cocoa/extension_installed_bubble_controller.mm
+++ b/chrome/browser/cocoa/extension_installed_bubble_controller.mm
@@ -143,11 +143,11 @@ class ExtensionLoadedNotificationObserver : public NotificationObserver {
if (!extension_->page_action() || pageActionRemoved_)
return;
pageActionRemoved_ = YES;
- BrowserWindowCocoa* window = static_cast<BrowserWindowCocoa*>(
- browser_->window());
- LocationBarViewMac* locationBarView = static_cast<LocationBarViewMac*>(
- [[window->cocoa_controller() toolbarController] locationBarBridge]);
+ BrowserWindowCocoa* window =
+ static_cast<BrowserWindowCocoa*>(browser_->window());
+ LocationBarViewMac* locationBarView =
+ [window->cocoa_controller() locationBarBridge];
locationBarView->SetPreviewEnabledPageAction(extension_->page_action(),
false); // disables preview.
}
@@ -173,9 +173,8 @@ class ExtensionLoadedNotificationObserver : public NotificationObserver {
}
case extension_installed_bubble::kPageAction: {
LocationBarViewMac* locationBarView =
- static_cast<LocationBarViewMac*>(
- [[window->cocoa_controller() toolbarController]
- locationBarBridge]);
+ [window->cocoa_controller() locationBarBridge];
+
// Tell the location bar to show a preview of the page action icon, which
// would ordinarily only be displayed on a page of the appropriate type.
// We remove this preview when the extension installed bubble closes.
@@ -183,9 +182,8 @@ class ExtensionLoadedNotificationObserver : public NotificationObserver {
true);
// Find the center of the bottom of the page action icon.
- const NSRect frame =
- locationBarView->GetPageActionFrame(extension_->page_action());
- arrowPoint = NSMakePoint(NSMidX(frame), NSMinY(frame));
+ arrowPoint =
+ locationBarView->GetPageActionBubblePoint(extension_->page_action());
break;
}
default: {
« no previous file with comments | « chrome/browser/cocoa/browser_window_controller.mm ('k') | chrome/browser/cocoa/extensions/extension_action_context_menu.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698