diff options
Diffstat (limited to 'Source/WebCore')
-rw-r--r-- | Source/WebCore/platform/android/ClipboardAndroid.h | 1 | ||||
-rw-r--r-- | Source/WebCore/platform/android/PackageNotifier.h | 3 | ||||
-rw-r--r-- | Source/WebCore/platform/graphics/android/FontCustomPlatformData.h | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/Source/WebCore/platform/android/ClipboardAndroid.h b/Source/WebCore/platform/android/ClipboardAndroid.h index 807653b..86be8f0 100644 --- a/Source/WebCore/platform/android/ClipboardAndroid.h +++ b/Source/WebCore/platform/android/ClipboardAndroid.h @@ -36,6 +36,7 @@ namespace WebCore { class CachedImage; class ClipboardAndroid : public Clipboard, public CachedResourceClient { + WTF_MAKE_FAST_ALLOCATED; public: ClipboardAndroid(ClipboardAccessPolicy policy, ClipboardType); ~ClipboardAndroid(); diff --git a/Source/WebCore/platform/android/PackageNotifier.h b/Source/WebCore/platform/android/PackageNotifier.h index 8191d84..2303f84 100644 --- a/Source/WebCore/platform/android/PackageNotifier.h +++ b/Source/WebCore/platform/android/PackageNotifier.h @@ -37,7 +37,8 @@ namespace WebCore { -class PackageNotifier : public Noncopyable { +class PackageNotifier { + WTF_MAKE_NONCOPYABLE(PackageNotifier); public: PackageNotifier(); diff --git a/Source/WebCore/platform/graphics/android/FontCustomPlatformData.h b/Source/WebCore/platform/graphics/android/FontCustomPlatformData.h index 3514ae7..b03afa9 100644 --- a/Source/WebCore/platform/graphics/android/FontCustomPlatformData.h +++ b/Source/WebCore/platform/graphics/android/FontCustomPlatformData.h @@ -38,7 +38,8 @@ namespace WebCore { class FontPlatformData; class SharedBuffer; -class FontCustomPlatformData : public Noncopyable { +class FontCustomPlatformData { + WTF_MAKE_NONCOPYABLE(FontCustomPlatformData); public: FontCustomPlatformData(SkTypeface* face); ~FontCustomPlatformData(); |