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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 void setHasScrollEventHandlers(bool) override {} | 164 void setHasScrollEventHandlers(bool) override {} |
165 bool hasScrollEventHandlers() const override { return false; } | 165 bool hasScrollEventHandlers() const override { return false; } |
166 | 166 |
167 void setTouchAction(TouchAction) override {} | 167 void setTouchAction(TouchAction) override {} |
168 | 168 |
169 void didAssociateFormControls(const HeapVector<Member<Element>>&, LocalFrame
*) override {} | 169 void didAssociateFormControls(const HeapVector<Member<Element>>&, LocalFrame
*) override {} |
170 | 170 |
171 void annotatedRegionsChanged() override {} | 171 void annotatedRegionsChanged() override {} |
172 String acceptLanguages() override; | 172 String acceptLanguages() override; |
173 | 173 |
| 174 CompositorProxyClient* createCompositorProxyClient() override { return nullp
tr; } |
| 175 |
174 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} | 176 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} |
175 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} | 177 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} |
176 | 178 |
177 PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) override; | 179 PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) override; |
178 }; | 180 }; |
179 | 181 |
180 class CORE_EXPORT EmptyFrameLoaderClient : public FrameLoaderClient { | 182 class CORE_EXPORT EmptyFrameLoaderClient : public FrameLoaderClient { |
181 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); | 183 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); |
182 public: | 184 public: |
183 static EmptyFrameLoaderClient* create() { return new EmptyFrameLoaderClient;
} | 185 static EmptyFrameLoaderClient* create() { return new EmptyFrameLoaderClient;
} |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 ~EmptyContextMenuClient() override {} | 330 ~EmptyContextMenuClient() override {} |
329 void showContextMenu(const ContextMenu*) override {} | 331 void showContextMenu(const ContextMenu*) override {} |
330 void clearContextMenu() override {} | 332 void clearContextMenu() override {} |
331 }; | 333 }; |
332 | 334 |
333 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 335 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
334 | 336 |
335 } // namespace blink | 337 } // namespace blink |
336 | 338 |
337 #endif // EmptyClients_h | 339 #endif // EmptyClients_h |
OLD | NEW |