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

Unified Diff: chrome/browser/cocoa/location_bar/location_bar_view_mac.h

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/location_bar/location_bar_view_mac.h
diff --git a/chrome/browser/cocoa/location_bar/location_bar_view_mac.h b/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
index 684aff5b733bb0b878e7ea85e0ce0c88effef2be..46d2bc009f5e1f2da574cd57a841954509939866 100644
--- a/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
+++ b/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
@@ -108,20 +108,15 @@ class LocationBarViewMac : public AutocompleteEditController,
void SetPreviewEnabledPageAction(ExtensionAction* page_action,
bool preview_enabled);
- // Return |page_action|'s frame in window coordinates.
- NSRect GetPageActionFrame(ExtensionAction* page_action);
-
- // Return the index of a given page_action.
- size_t GetPageActionIndex(ExtensionAction* page_action);
+ // Return |page_action|'s info-bubble point in window coordinates.
+ // Returns |NSZeroPoint| if |page_action| is not present.
+ NSPoint GetPageActionBubblePoint(ExtensionAction* page_action);
// PageActionImageView is nested in LocationBarViewMac, and only needed
// here so that we can access the icon of a page action when preview_enabled_
// has been set.
class PageActionImageView;
- // Return the PageActionImageView associated with |page_action|.
- PageActionImageView* GetPageActionImageView(ExtensionAction* page_action);
-
virtual void OnAutocompleteAccept(const GURL& url,
WindowOpenDisposition disposition,
PageTransition::Type transition,

Powered by Google App Engine
This is Rietveld 408576698