| Index: Source/web/ContextFeaturesClientImpl.h
|
| diff --git a/Source/web/ContextFeaturesClientImpl.h b/Source/web/ContextFeaturesClientImpl.h
|
| index 8aaefb84a0bbf4d69130e1eb4465637c438b7763..8ac7dbedc5adf0f757ab9d1d6c99d2aad7bcf999 100644
|
| --- a/Source/web/ContextFeaturesClientImpl.h
|
| +++ b/Source/web/ContextFeaturesClientImpl.h
|
| @@ -35,15 +35,15 @@
|
|
|
| namespace blink {
|
|
|
| -class ContextFeaturesClientImpl FINAL : public ContextFeaturesClient {
|
| +class ContextFeaturesClientImpl final : public ContextFeaturesClient {
|
| public:
|
| static PassOwnPtr<ContextFeaturesClientImpl> create()
|
| {
|
| return adoptPtr(new ContextFeaturesClientImpl());
|
| }
|
|
|
| - virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue) OVERRIDE;
|
| - virtual void urlDidChange(Document*) OVERRIDE;
|
| + virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue) override;
|
| + virtual void urlDidChange(Document*) override;
|
|
|
| private:
|
| ContextFeaturesClientImpl() { }
|
|
|