| Index: Source/core/html/canvas/HitRegion.cpp
|
| diff --git a/Source/core/html/canvas/HitRegion.cpp b/Source/core/html/canvas/HitRegion.cpp
|
| index 3c78dbfe5ef30d6fa6d5ae0e49a6d6bd16175152..5de075cd5db3528d8526db95fc9af9c12dbede26 100644
|
| --- a/Source/core/html/canvas/HitRegion.cpp
|
| +++ b/Source/core/html/canvas/HitRegion.cpp
|
| @@ -134,7 +134,7 @@ HitRegion* HitRegionManager::getHitRegionByControl(Element* control) const
|
| if (control)
|
| return m_hitRegionControlMap.get(control);
|
|
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| HitRegion* HitRegionManager::getHitRegionAtPoint(const LayoutPoint& point) const
|
| @@ -147,7 +147,7 @@ HitRegion* HitRegionManager::getHitRegionAtPoint(const LayoutPoint& point) const
|
| return hitRegion.get();
|
| }
|
|
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| unsigned HitRegionManager::getHitRegionsCount() const
|
|
|