| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} | 211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} |
| 212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} | 212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} |
| 213 | 213 |
| 214 void setTouchAction(LocalFrame*, TouchAction) override {} | 214 void setTouchAction(LocalFrame*, TouchAction) override {} |
| 215 | 215 |
| 216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} | 216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} |
| 217 | 217 |
| 218 void annotatedRegionsChanged() override {} | 218 void annotatedRegionsChanged() override {} |
| 219 String acceptLanguages() override; | 219 String acceptLanguages() override; |
| 220 | 220 |
| 221 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { | 221 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( |
| 222 LocalFrame*) override { |
| 222 return nullptr; | 223 return nullptr; |
| 223 } | 224 } |
| 224 | 225 |
| 226 AnimationWorkletProxyClient* createAnimationWorkletProxyClient( |
| 227 LocalFrame*) override { |
| 228 return nullptr; |
| 229 } |
| 230 |
| 225 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} | 231 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} |
| 226 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} | 232 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} |
| 227 | 233 |
| 228 std::unique_ptr<WebFrameScheduler> createFrameScheduler( | 234 std::unique_ptr<WebFrameScheduler> createFrameScheduler( |
| 229 BlameContext*) override; | 235 BlameContext*) override; |
| 230 }; | 236 }; |
| 231 | 237 |
| 232 class CORE_EXPORT EmptyFrameLoaderClient : public FrameLoaderClient { | 238 class CORE_EXPORT EmptyFrameLoaderClient : public FrameLoaderClient { |
| 233 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); | 239 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); |
| 234 | 240 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 Frame* nextSibling() const override { return nullptr; } | 465 Frame* nextSibling() const override { return nullptr; } |
| 460 Frame* firstChild() const override { return nullptr; } | 466 Frame* firstChild() const override { return nullptr; } |
| 461 void frameFocused() const override {} | 467 void frameFocused() const override {} |
| 462 }; | 468 }; |
| 463 | 469 |
| 464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 470 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 465 | 471 |
| 466 } // namespace blink | 472 } // namespace blink |
| 467 | 473 |
| 468 #endif // EmptyClients_h | 474 #endif // EmptyClients_h |
| OLD | NEW |