OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 TabContents* GetTabContents() const; | 101 TabContents* GetTabContents() const; |
102 | 102 |
103 // Sets preview_enabled_ for the PageActionImageView associated with this | 103 // Sets preview_enabled_ for the PageActionImageView associated with this |
104 // |page_action|. If |preview_enabled|, the location bar will display the | 104 // |page_action|. If |preview_enabled|, the location bar will display the |
105 // PageAction icon even if it has not been activated by the extension. | 105 // PageAction icon even if it has not been activated by the extension. |
106 // This is used by the ExtensionInstalledBubble to preview what the icon | 106 // This is used by the ExtensionInstalledBubble to preview what the icon |
107 // will look like for the user upon installation of the extension. | 107 // will look like for the user upon installation of the extension. |
108 void SetPreviewEnabledPageAction(ExtensionAction* page_action, | 108 void SetPreviewEnabledPageAction(ExtensionAction* page_action, |
109 bool preview_enabled); | 109 bool preview_enabled); |
110 | 110 |
111 // Return |page_action|'s frame in window coordinates. | 111 // Return |page_action|'s info-bubble point in window coordinates. |
112 NSRect GetPageActionFrame(ExtensionAction* page_action); | 112 // Returns |NSZeroPoint| if |page_action| is not present. |
113 | 113 NSPoint GetPageActionBubblePoint(ExtensionAction* page_action); |
114 // Return the index of a given page_action. | |
115 size_t GetPageActionIndex(ExtensionAction* page_action); | |
116 | 114 |
117 // PageActionImageView is nested in LocationBarViewMac, and only needed | 115 // PageActionImageView is nested in LocationBarViewMac, and only needed |
118 // here so that we can access the icon of a page action when preview_enabled_ | 116 // here so that we can access the icon of a page action when preview_enabled_ |
119 // has been set. | 117 // has been set. |
120 class PageActionImageView; | 118 class PageActionImageView; |
121 | 119 |
122 // Return the PageActionImageView associated with |page_action|. | |
123 PageActionImageView* GetPageActionImageView(ExtensionAction* page_action); | |
124 | |
125 virtual void OnAutocompleteAccept(const GURL& url, | 120 virtual void OnAutocompleteAccept(const GURL& url, |
126 WindowOpenDisposition disposition, | 121 WindowOpenDisposition disposition, |
127 PageTransition::Type transition, | 122 PageTransition::Type transition, |
128 const GURL& alternate_nav_url); | 123 const GURL& alternate_nav_url); |
129 virtual void OnChanged(); | 124 virtual void OnChanged(); |
130 virtual void OnInputInProgress(bool in_progress); | 125 virtual void OnInputInProgress(bool in_progress); |
131 virtual void OnKillFocus(); | 126 virtual void OnKillFocus(); |
132 virtual void OnSetFocus(); | 127 virtual void OnSetFocus(); |
133 virtual SkBitmap GetFavIcon() const; | 128 virtual SkBitmap GetFavIcon() const; |
134 virtual std::wstring GetTitle() const; | 129 virtual std::wstring GetTitle() const; |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 // Used to register for notifications received by NotificationObserver. | 444 // Used to register for notifications received by NotificationObserver. |
450 NotificationRegistrar registrar_; | 445 NotificationRegistrar registrar_; |
451 | 446 |
452 // Used to schedule a task for the first run info bubble. | 447 // Used to schedule a task for the first run info bubble. |
453 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; | 448 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; |
454 | 449 |
455 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 450 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
456 }; | 451 }; |
457 | 452 |
458 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 453 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
OLD | NEW |