| Index: chrome/browser/cocoa/location_bar_view_mac.h
|
| ===================================================================
|
| --- chrome/browser/cocoa/location_bar_view_mac.h (revision 34960)
|
| +++ chrome/browser/cocoa/location_bar_view_mac.h (working copy)
|
| @@ -23,6 +23,7 @@
|
| @class AutocompleteTextField;
|
| class BubblePositioner;
|
| class CommandUpdater;
|
| +@class ExtensionPopupController;
|
| class Profile;
|
| class ToolbarModel;
|
|
|
| @@ -83,6 +84,7 @@
|
| virtual std::wstring GetTitle() const;
|
|
|
| NSImage* GetTabButtonImage();
|
| + AutocompleteTextField* GetAutocompleteTextField() { return field_; }
|
|
|
| // Internals of OnChanged(), pulled out for purposes of unit
|
| // testing. Sets up |field| based on the parameters, which are
|
| @@ -207,6 +209,7 @@
|
| virtual void Observe(NotificationType type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details);
|
| + void HidePopup();
|
|
|
| // The location bar view that owns us.
|
| LocationBarViewMac* owner_;
|
| @@ -222,6 +225,9 @@
|
| typedef std::map<std::string, SkBitmap> PageActionMap;
|
| PageActionMap page_action_icons_;
|
|
|
| + // The controller for the popup displayed if a page action has one. Weak.
|
| + ExtensionPopupController* popupController_;
|
| +
|
| // The object that is waiting for the image loading to complete
|
| // asynchronously.
|
| ImageLoadingTracker* tracker_;
|
|
|