| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 // Overridden from ExtensionActionViewDelegate: | 62 // Overridden from ExtensionActionViewDelegate: |
| 63 virtual void OnIconUpdated() OVERRIDE; | 63 virtual void OnIconUpdated() OVERRIDE; |
| 64 virtual views::View* GetAsView() OVERRIDE; | 64 virtual views::View* GetAsView() OVERRIDE; |
| 65 virtual bool IsShownInMenu() OVERRIDE; | 65 virtual bool IsShownInMenu() OVERRIDE; |
| 66 virtual views::FocusManager* GetFocusManagerForAccelerator() OVERRIDE; | 66 virtual views::FocusManager* GetFocusManagerForAccelerator() OVERRIDE; |
| 67 virtual views::Widget* GetParentForContextMenu() OVERRIDE; | 67 virtual views::Widget* GetParentForContextMenu() OVERRIDE; |
| 68 virtual ExtensionActionViewController* GetPreferredPopupViewController() | 68 virtual ExtensionActionViewController* GetPreferredPopupViewController() |
| 69 OVERRIDE; | 69 OVERRIDE; |
| 70 virtual views::View* GetReferenceViewForPopup() OVERRIDE; | 70 virtual views::View* GetReferenceViewForPopup() OVERRIDE; |
| 71 virtual views::MenuButton* GetContextMenuButton() OVERRIDE; |
| 71 virtual content::WebContents* GetCurrentWebContents() OVERRIDE; | 72 virtual content::WebContents* GetCurrentWebContents() OVERRIDE; |
| 72 virtual void HideActivePopup() OVERRIDE; | 73 virtual void HideActivePopup() OVERRIDE; |
| 73 | 74 |
| 74 // The controller for this ExtensionAction view. | 75 // The controller for this ExtensionAction view. |
| 75 scoped_ptr<ExtensionActionViewController> view_controller_; | 76 scoped_ptr<ExtensionActionViewController> view_controller_; |
| 76 | 77 |
| 77 // The location bar view that owns us. | 78 // The location bar view that owns us. |
| 78 LocationBarView* owner_; | 79 LocationBarView* owner_; |
| 79 | 80 |
| 80 // The string to show for a tooltip; | 81 // The string to show for a tooltip; |
| 81 std::string tooltip_; | 82 std::string tooltip_; |
| 82 | 83 |
| 83 // This is used for post-install visual feedback. The page_action icon is | 84 // This is used for post-install visual feedback. The page_action icon is |
| 84 // briefly shown even if it hasn't been enabled by its extension. | 85 // briefly shown even if it hasn't been enabled by its extension. |
| 85 bool preview_enabled_; | 86 bool preview_enabled_; |
| 86 | 87 |
| 87 DISALLOW_IMPLICIT_CONSTRUCTORS(PageActionImageView); | 88 DISALLOW_IMPLICIT_CONSTRUCTORS(PageActionImageView); |
| 88 }; | 89 }; |
| 89 | 90 |
| 90 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ | 91 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_PAGE_ACTION_IMAGE_VIEW_H_ |
| OLD | NEW |