Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(844)

Unified Diff: Source/core/html/canvas/HitRegion.h

Issue 329853011: Oilpan: fix build after r176674. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/html/canvas/HitRegion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/HitRegion.h
diff --git a/Source/core/html/canvas/HitRegion.h b/Source/core/html/canvas/HitRegion.h
index c0d57be5a619042deaaee471462aac38870c3e9b..3d61fad714c1800cf6f03422420ca0e9f70dad12 100644
--- a/Source/core/html/canvas/HitRegion.h
+++ b/Source/core/html/canvas/HitRegion.h
@@ -26,7 +26,7 @@ public:
Path path;
};
-class HitRegion FINAL : public RefCountedWillBeGarbageCollected<HitRegion> {
+class HitRegion FINAL : public RefCountedWillBeGarbageCollectedFinalized<HitRegion> {
public:
static PassRefPtrWillBeRawPtr<HitRegion> create(const HitRegionOptions& options)
{
@@ -56,10 +56,9 @@ private:
class HitRegionManager FINAL : public NoBaseWillBeGarbageCollected<HitRegionManager> {
WTF_MAKE_NONCOPYABLE(HitRegionManager);
-
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(HitRegionManager)
public:
static PassOwnPtrWillBeRawPtr<HitRegionManager> create() { return adoptPtrWillBeNoop(new HitRegionManager()); }
- virtual ~HitRegionManager() { }
void addHitRegion(PassRefPtrWillBeRawPtr<HitRegion>);
« no previous file with comments | « no previous file | Source/core/html/canvas/HitRegion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698