| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 class WebGestureEvent; | |
| 12 class WebMouseEvent; | 11 class WebMouseEvent; |
| 13 } | 12 } |
| 14 | 13 |
| 15 namespace gfx { | 14 namespace gfx { |
| 16 class Point; | 15 class Point; |
| 17 } | 16 } |
| 18 | 17 |
| 19 namespace content { | 18 namespace content { |
| 20 | 19 |
| 21 // | 20 // |
| (...skipping 15 matching lines...) Expand all Loading... |
| 37 virtual bool RenderWidgetWillHandleMouseEvent( | 36 virtual bool RenderWidgetWillHandleMouseEvent( |
| 38 const blink::WebMouseEvent& event) = 0; | 37 const blink::WebMouseEvent& event) = 0; |
| 39 | 38 |
| 40 protected: | 39 protected: |
| 41 virtual ~RenderWidgetOwnerDelegate() {} | 40 virtual ~RenderWidgetOwnerDelegate() {} |
| 42 }; | 41 }; |
| 43 | 42 |
| 44 } // namespace content | 43 } // namespace content |
| 45 | 44 |
| 46 #endif // CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ | 45 #endif // CONTENT_RENDERER_RENDER_WIDGET_OWNER_DELEGATE_H_ |
| OLD | NEW |