| Index: sky/engine/core/loader/EmptyClients.cpp
|
| diff --git a/sky/engine/core/loader/EmptyClients.cpp b/sky/engine/core/loader/EmptyClients.cpp
|
| index 6de1de3f07b5eae1867b2d7133b3563c8106ba01..7d817046e00365b05b5fd1b9e1541a60d7af0816 100644
|
| --- a/sky/engine/core/loader/EmptyClients.cpp
|
| +++ b/sky/engine/core/loader/EmptyClients.cpp
|
| @@ -35,9 +35,6 @@ namespace blink {
|
|
|
| void fillWithEmptyClients(Page::PageClients& pageClients)
|
| {
|
| - static ChromeClient* dummyChromeClient = adoptPtr(new EmptyChromeClient).leakPtr();
|
| - pageClients.chromeClient = dummyChromeClient;
|
| -
|
| static EditorClient* dummyEditorClient = adoptPtr(new EmptyEditorClient).leakPtr();
|
| pageClients.editorClient = dummyEditorClient;
|
|
|
| @@ -45,11 +42,6 @@ void fillWithEmptyClients(Page::PageClients& pageClients)
|
| pageClients.spellCheckerClient = dummySpellCheckerClient;
|
| }
|
|
|
| -String EmptyChromeClient::acceptLanguages()
|
| -{
|
| - return String();
|
| -}
|
| -
|
| NavigationPolicy EmptyFrameLoaderClient::decidePolicyForNavigation(const ResourceRequest&, Document*, NavigationPolicy, bool isTransitionNavigation)
|
| {
|
| return NavigationPolicyIgnore;
|
|
|