| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
| 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 void documentElementAvailable() override {} | 259 void documentElementAvailable() override {} |
| 260 void runScriptsAtDocumentElementAvailable() override {} | 260 void runScriptsAtDocumentElementAvailable() override {} |
| 261 void runScriptsAtDocumentReady(bool) override {} | 261 void runScriptsAtDocumentReady(bool) override {} |
| 262 | 262 |
| 263 void didCreateScriptContext(v8::Local<v8::Context>, int extensionGroup, int
worldId) override {} | 263 void didCreateScriptContext(v8::Local<v8::Context>, int extensionGroup, int
worldId) override {} |
| 264 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override
{} | 264 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override
{} |
| 265 bool allowScriptExtension(const String& extensionName, int extensionGroup, i
nt worldId) override { return false; } | 265 bool allowScriptExtension(const String& extensionName, int extensionGroup, i
nt worldId) override { return false; } |
| 266 | 266 |
| 267 WebCookieJar* cookieJar() const override { return 0; } | 267 WebCookieJar* cookieJar() const override { return 0; } |
| 268 | 268 |
| 269 void didRequestAutocomplete(HTMLFormElement*) override; | |
| 270 | |
| 271 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override; | 269 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override; |
| 272 bool isControlledByServiceWorker(DocumentLoader&) override { return false; } | 270 bool isControlledByServiceWorker(DocumentLoader&) override { return false; } |
| 273 int64_t serviceWorkerID(DocumentLoader&) override { return -1; } | 271 int64_t serviceWorkerID(DocumentLoader&) override { return -1; } |
| 274 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio
nCacheHostClient*) override; | 272 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio
nCacheHostClient*) override; |
| 275 | 273 |
| 276 protected: | 274 protected: |
| 277 EmptyFrameLoaderClient() {} | 275 EmptyFrameLoaderClient() {} |
| 278 }; | 276 }; |
| 279 | 277 |
| 280 class CORE_EXPORT EmptyTextCheckerClient : public TextCheckerClient { | 278 class CORE_EXPORT EmptyTextCheckerClient : public TextCheckerClient { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ~EmptyContextMenuClient() override {} | 326 ~EmptyContextMenuClient() override {} |
| 329 void showContextMenu(const ContextMenu*) override {} | 327 void showContextMenu(const ContextMenu*) override {} |
| 330 void clearContextMenu() override {} | 328 void clearContextMenu() override {} |
| 331 }; | 329 }; |
| 332 | 330 |
| 333 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 331 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 334 | 332 |
| 335 } // namespace blink | 333 } // namespace blink |
| 336 | 334 |
| 337 #endif // EmptyClients_h | 335 #endif // EmptyClients_h |
| OLD | NEW |