| Index: third_party/WebKit/Source/platform/fonts/opentype/FontSettings.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/opentype/FontSettings.h b/third_party/WebKit/Source/platform/fonts/opentype/FontSettings.h
|
| index c64693529b1bb4b21b8454b0de5b1d1d08e60220..d57d2eecfd8458f6426dcdec8524aedb42eacf79 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/opentype/FontSettings.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/opentype/FontSettings.h
|
| @@ -64,7 +64,7 @@ class PLATFORM_EXPORT FontFeatureSettings
|
|
|
| public:
|
| static PassRefPtr<FontFeatureSettings> create() {
|
| - return adoptRef(new FontFeatureSettings);
|
| + return adoptRef(new FontFeatureSettings());
|
| }
|
|
|
| private:
|
| @@ -79,7 +79,7 @@ class PLATFORM_EXPORT FontVariationSettings
|
| public:
|
| static PassRefPtr<FontVariationSettings> create() {
|
| return adoptRef(new FontVariationSettings());
|
| - };
|
| + }
|
|
|
| private:
|
| FontVariationSettings() = default;
|
|
|