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

Unified Diff: chrome/browser/cocoa/extensions/extension_action_context_menu.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/extensions/extension_action_context_menu.mm
diff --git a/chrome/browser/cocoa/extensions/extension_action_context_menu.mm b/chrome/browser/cocoa/extensions/extension_action_context_menu.mm
index 1b954a6d005ea43eba66d65025bdabdbb20cfe5b..36a7392ab574553926c7933540709311ca14dff3 100644
--- a/chrome/browser/cocoa/extensions/extension_action_context_menu.mm
+++ b/chrome/browser/cocoa/extensions/extension_action_context_menu.mm
@@ -235,31 +235,21 @@ int CurrentTabId() {
break;
}
case kExtensionContextInspect: {
- NSPoint popupPoint;
BrowserWindowCocoa* window =
static_cast<BrowserWindowCocoa*>(browser->window());
- LocationBar* locationBar = window->GetLocationBar();
- AutocompleteTextField* field =
- (AutocompleteTextField*)locationBar->location_entry()->
- GetNativeView();
- AutocompleteTextFieldCell* fieldCell = [field autocompleteTextFieldCell];
- DCHECK(action_);
- NSRect popupRect =
- [fieldCell pageActionFrameForExtensionAction:action_
- inFrame:[field bounds]];
- if (!NSEqualRects(popupRect, NSZeroRect)) {
- popupRect = [[field superview] convertRect:popupRect toView:nil];
- popupPoint = popupRect.origin;
- NSRect fieldFrame = [field bounds];
- fieldFrame = [field convertRect:fieldFrame toView:nil];
- popupPoint.x += fieldFrame.origin.x + popupRect.size.width / 2;
- } else {
- ToolbarController* toolbarController =
- [window->cocoa_controller() toolbarController];
+ ToolbarController* toolbarController =
+ [window->cocoa_controller() toolbarController];
+ LocationBarViewMac* locationBarView =
+ [toolbarController locationBarBridge];
+ NSPoint popupPoint = locationBarView->GetPageActionBubblePoint(action_);
+
+ // If there was no matching page action, it was a browser action.
+ if (NSEqualPoints(popupPoint, NSZeroPoint)) {
BrowserActionsController* controller =
[toolbarController browserActionsController];
popupPoint = [controller popupPointForBrowserAction:extension_];
}
+
int tabId = CurrentTabId();
GURL url = action_->GetPopupUrl(tabId);
DCHECK(url.is_valid());

Powered by Google App Engine
This is Rietveld 408576698