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