| Index: chrome/browser/ui/views/extensions/extension_view.h
|
| ===================================================================
|
| --- chrome/browser/ui/views/extensions/extension_view.h (revision 110269)
|
| +++ chrome/browser/ui/views/extensions/extension_view.h (working copy)
|
| @@ -28,6 +28,9 @@
|
| class Container {
|
| public:
|
| virtual ~Container() {}
|
| + // Mouse event notifications from the view. (useful for hover UI).
|
| + virtual void OnExtensionMouseMove(ExtensionView* view) = 0;
|
| + virtual void OnExtensionMouseLeave(ExtensionView* view) = 0;
|
| virtual void OnExtensionPreferredSizeChanged(ExtensionView* view) {}
|
| };
|
|
|
| @@ -40,6 +43,8 @@
|
|
|
| // Notification from ExtensionHost.
|
| void UpdatePreferredSize(const gfx::Size& new_size);
|
| + void HandleMouseMove();
|
| + void HandleMouseLeave();
|
|
|
| // Method for the ExtensionHost to notify us when the RenderViewHost has a
|
| // connection.
|
|
|
| Property changes on: chrome/browser/ui/views/extensions/extension_view.h
|
| ___________________________________________________________________
|
| Added: svn:mergeinfo
|
|
|
|
|