| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 const String&, | 344 const String&, |
| 345 bool) override { | 345 bool) override { |
| 346 return ObjectContentType(); | 346 return ObjectContentType(); |
| 347 } | 347 } |
| 348 | 348 |
| 349 void didCreateNewDocument() override {} | 349 void didCreateNewDocument() override {} |
| 350 void dispatchDidClearWindowObjectInMainWorld() override {} | 350 void dispatchDidClearWindowObjectInMainWorld() override {} |
| 351 void documentElementAvailable() override {} | 351 void documentElementAvailable() override {} |
| 352 void runScriptsAtDocumentElementAvailable() override {} | 352 void runScriptsAtDocumentElementAvailable() override {} |
| 353 void runScriptsAtDocumentReady(bool) override {} | 353 void runScriptsAtDocumentReady(bool) override {} |
| 354 void runScriptsAtDocumentIdle() override {} |
| 354 | 355 |
| 355 void didCreateScriptContext(v8::Local<v8::Context>, | 356 void didCreateScriptContext(v8::Local<v8::Context>, |
| 356 int worldId) override {} | 357 int worldId) override {} |
| 357 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {} | 358 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {} |
| 358 bool allowScriptExtensions() override { return false; } | 359 bool allowScriptExtensions() override { return false; } |
| 359 | 360 |
| 360 WebCookieJar* cookieJar() const override { return 0; } | 361 WebCookieJar* cookieJar() const override { return 0; } |
| 361 | 362 |
| 362 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() | 363 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() |
| 363 override; | 364 override; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 Frame* nextSibling() const override { return nullptr; } | 468 Frame* nextSibling() const override { return nullptr; } |
| 468 Frame* firstChild() const override { return nullptr; } | 469 Frame* firstChild() const override { return nullptr; } |
| 469 void frameFocused() const override {} | 470 void frameFocused() const override {} |
| 470 }; | 471 }; |
| 471 | 472 |
| 472 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 473 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 473 | 474 |
| 474 } // namespace blink | 475 } // namespace blink |
| 475 | 476 |
| 476 #endif // EmptyClients_h | 477 #endif // EmptyClients_h |
| OLD | NEW |