| Index: Source/core/loader/EmptyClients.h
|
| diff --git a/Source/core/loader/EmptyClients.h b/Source/core/loader/EmptyClients.h
|
| index 2c171fbf79ea3efb96bba9f1ab050f4083a5156e..48c24ae4630e50699f7cb6a73e996aa724c51f85 100644
|
| --- a/Source/core/loader/EmptyClients.h
|
| +++ b/Source/core/loader/EmptyClients.h
|
| @@ -135,7 +135,7 @@ public:
|
|
|
| virtual IntPoint screenToRootView(const IntPoint& p) const OVERRIDE { return p; }
|
| virtual IntRect rootViewToScreen(const IntRect& r) const OVERRIDE { return r; }
|
| - virtual WebKit::WebScreenInfo screenInfo() const OVERRIDE { return WebKit::WebScreenInfo(); }
|
| + virtual blink::WebScreenInfo screenInfo() const OVERRIDE { return blink::WebScreenInfo(); }
|
| virtual void contentsSizeChanged(Frame*, const IntSize&) const OVERRIDE { }
|
|
|
| virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) OVERRIDE { }
|
| @@ -245,10 +245,10 @@ public:
|
| virtual void willReleaseScriptContext(v8::Handle<v8::Context>, int worldId) OVERRIDE { }
|
| virtual bool allowScriptExtension(const String& extensionName, int extensionGroup, int worldId) OVERRIDE { return false; }
|
|
|
| - virtual WebKit::WebCookieJar* cookieJar() const { return 0; }
|
| + virtual blink::WebCookieJar* cookieJar() const { return 0; }
|
|
|
| virtual void didRequestAutocomplete(PassRefPtr<FormState>) OVERRIDE;
|
| - virtual PassOwnPtr<WebKit::WebServiceWorkerProvider> createServiceWorkerProvider(PassOwnPtr<WebKit::WebServiceWorkerProviderClient>) OVERRIDE;
|
| + virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerProvider(PassOwnPtr<blink::WebServiceWorkerProviderClient>) OVERRIDE;
|
| };
|
|
|
| class EmptyTextCheckerClient : public TextCheckerClient {
|
|
|