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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 ColorChooserClient*, | 196 ColorChooserClient*, |
197 const Color&) override; | 197 const Color&) override; |
198 DateTimeChooser* OpenDateTimeChooser( | 198 DateTimeChooser* OpenDateTimeChooser( |
199 DateTimeChooserClient*, | 199 DateTimeChooserClient*, |
200 const DateTimeChooserParameters&) override; | 200 const DateTimeChooserParameters&) override; |
201 void OpenTextDataListChooser(HTMLInputElement&) override; | 201 void OpenTextDataListChooser(HTMLInputElement&) override; |
202 | 202 |
203 void OpenFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 203 void OpenFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
204 | 204 |
205 void SetCursor(const Cursor&, LocalFrame* local_root) override {} | 205 void SetCursor(const Cursor&, LocalFrame* local_root) override {} |
| 206 void SetCursorOverridden(bool) override {} |
206 Cursor LastSetCursorForTesting() const override { return PointerCursor(); } | 207 Cursor LastSetCursorForTesting() const override { return PointerCursor(); } |
207 | 208 |
208 void AttachRootGraphicsLayer(GraphicsLayer*, LocalFrame* local_root) override; | 209 void AttachRootGraphicsLayer(GraphicsLayer*, LocalFrame* local_root) override; |
209 void AttachRootLayer(WebLayer*, LocalFrame* local_root) override {} | 210 void AttachRootLayer(WebLayer*, LocalFrame* local_root) override {} |
210 | 211 |
211 void SetEventListenerProperties(LocalFrame*, | 212 void SetEventListenerProperties(LocalFrame*, |
212 WebEventListenerClass, | 213 WebEventListenerClass, |
213 WebEventListenerProperties) override {} | 214 WebEventListenerProperties) override {} |
214 WebEventListenerProperties EventListenerProperties( | 215 WebEventListenerProperties EventListenerProperties( |
215 LocalFrame*, | 216 LocalFrame*, |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 Frame* NextSibling() const override { return nullptr; } | 483 Frame* NextSibling() const override { return nullptr; } |
483 Frame* FirstChild() const override { return nullptr; } | 484 Frame* FirstChild() const override { return nullptr; } |
484 void FrameFocused() const override {} | 485 void FrameFocused() const override {} |
485 }; | 486 }; |
486 | 487 |
487 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 488 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
488 | 489 |
489 } // namespace blink | 490 } // namespace blink |
490 | 491 |
491 #endif // EmptyClients_h | 492 #endif // EmptyClients_h |
OLD | NEW |