| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "config.h" | |
| 6 #include "modules/canvas2d/MouseEventHitRegion.h" | 5 #include "modules/canvas2d/MouseEventHitRegion.h" |
| 7 | 6 |
| 8 #include "core/events/MouseEvent.h" | 7 #include "core/events/MouseEvent.h" |
| 9 #include "core/html/HTMLCanvasElement.h" | 8 #include "core/html/HTMLCanvasElement.h" |
| 10 | 9 |
| 11 namespace blink { | 10 namespace blink { |
| 12 | 11 |
| 13 String MouseEventHitRegion::region(MouseEvent& event) | 12 String MouseEventHitRegion::region(MouseEvent& event) |
| 14 { | 13 { |
| 15 if (!event.target() || !isHTMLCanvasElement(event.target()->toNode())) | 14 if (!event.target() || !isHTMLCanvasElement(event.target()->toNode())) |
| 16 return String(); | 15 return String(); |
| 17 | 16 |
| 18 HTMLCanvasElement* canvas = toHTMLCanvasElement(event.target()->toNode()); | 17 HTMLCanvasElement* canvas = toHTMLCanvasElement(event.target()->toNode()); |
| 19 return regionIdFromAbsoluteLocation(*canvas, event.absoluteLocation()); | 18 return regionIdFromAbsoluteLocation(*canvas, event.absoluteLocation()); |
| 20 } | 19 } |
| 21 | 20 |
| 22 } // namespace blink | 21 } // namespace blink |
| 23 | 22 |
| OLD | NEW |