Chromium Code Reviews| Index: ui/aura/window_delegate.h |
| diff --git a/ui/aura/window_delegate.h b/ui/aura/window_delegate.h |
| index 90e978a39c2e103900cb07dc9c04d2a536fec7da..62460c9f9579f6aad33c770c6e1d86126cd825c3 100644 |
| --- a/ui/aura/window_delegate.h |
| +++ b/ui/aura/window_delegate.h |
| @@ -29,6 +29,8 @@ class Texture; |
| class TouchEvent; |
| } |
| +class SkBitmap; |
| + |
| namespace aura { |
| // Delegate interface for aura::Window. |
| @@ -100,6 +102,10 @@ class AURA_EXPORT WindowDelegate : public ui::EventHandler { |
| // above returns true. |
| virtual void GetHitTestMask(gfx::Path* mask) const = 0; |
| + virtual void OnLinkDisambiguationPopupRequested( |
|
jam
2014/07/22 01:04:26
nit: every method in this class is documented...
sky
2014/07/22 04:17:23
You should not need to change WindowDelegate to ac
luken
2014/07/30 19:17:31
Done.
luken
2014/07/30 19:17:31
This code is deprecated.
|
| + const gfx::Rect& target_rect, |
| + const SkBitmap& zoomed_bitmap) = 0; |
| + |
| protected: |
| virtual ~WindowDelegate() {} |
| }; |