| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef ExternalPopupMenu_h | 31 #ifndef ExternalPopupMenu_h |
| 32 #define ExternalPopupMenu_h | 32 #define ExternalPopupMenu_h |
| 33 | 33 |
| 34 #include "platform/PopupMenu.h" | 34 #include "platform/PopupMenu.h" |
| 35 #include "platform/Timer.h" | 35 #include "platform/Timer.h" |
| 36 #include "public/platform/WebCanvas.h" | 36 #include "public/platform/WebCanvas.h" |
| 37 #include "public/platform/WebScrollbar.h" | 37 #include "public/platform/WebScrollbar.h" |
| 38 #include "public/web/WebExternalPopupMenuClient.h" | 38 #include "public/web/WebExternalPopupMenuClient.h" |
| 39 #include "web/WebExport.h" | |
| 40 #include "wtf/Compiler.h" | |
| 41 | 39 |
| 42 namespace blink { | 40 namespace blink { |
| 43 | 41 |
| 44 class HTMLSelectElement; | 42 class HTMLSelectElement; |
| 45 class LocalFrame; | 43 class LocalFrame; |
| 46 class WebExternalPopupMenu; | 44 class WebExternalPopupMenu; |
| 47 class WebMouseEvent; | 45 class WebMouseEvent; |
| 48 class WebViewImpl; | 46 class WebViewImpl; |
| 49 struct WebPopupMenuInfo; | 47 struct WebPopupMenuInfo; |
| 50 | 48 |
| 51 // The ExternalPopupMenu connects the actual implementation of the popup menu | 49 // The ExternalPopupMenu connects the actual implementation of the popup menu |
| 52 // to the WebCore popup menu. | 50 // to the WebCore popup menu. |
| 53 class WEB_EXPORT ExternalPopupMenu final : WTF_NON_EXPORTED_BASE(public PopupMen
u), public WebExternalPopupMenuClient { | 51 class ExternalPopupMenu final : public PopupMenu, public WebExternalPopupMenuCli
ent { |
| 54 public: | 52 public: |
| 55 ExternalPopupMenu(LocalFrame&, HTMLSelectElement&, WebViewImpl&); | 53 ExternalPopupMenu(LocalFrame&, HTMLSelectElement&, WebViewImpl&); |
| 56 ~ExternalPopupMenu() override; | 54 ~ExternalPopupMenu() override; |
| 57 | 55 |
| 58 // Fills |info| with the popup menu information contained in the | 56 // Fills |info| with the popup menu information contained in the |
| 59 // PopupMenuClient associated with this ExternalPopupMenu. | 57 // PopupMenuClient associated with this ExternalPopupMenu. |
| 60 // FIXME: public only for test access. Need to revert once gtest | 58 // FIXME: public only for test access. Need to revert once gtest |
| 61 // helpers from chromium are available for blink. | 59 // helpers from chromium are available for blink. |
| 62 static void getPopupMenuInfo(WebPopupMenuInfo&, HTMLSelectElement&); | 60 static void getPopupMenuInfo(WebPopupMenuInfo&, HTMLSelectElement&); |
| 63 static int toPopupMenuItemIndex(int index, HTMLSelectElement&); | 61 static int toPopupMenuItemIndex(int index, HTMLSelectElement&); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 89 Timer<ExternalPopupMenu> m_dispatchEventTimer; | 87 Timer<ExternalPopupMenu> m_dispatchEventTimer; |
| 90 // The actual implementor of the show menu. | 88 // The actual implementor of the show menu. |
| 91 WebExternalPopupMenu* m_webExternalPopupMenu; | 89 WebExternalPopupMenu* m_webExternalPopupMenu; |
| 92 uint64_t m_shownDOMTreeVersion = 0; | 90 uint64_t m_shownDOMTreeVersion = 0; |
| 93 bool m_needsUpdate = false; | 91 bool m_needsUpdate = false; |
| 94 }; | 92 }; |
| 95 | 93 |
| 96 } // namespace blink | 94 } // namespace blink |
| 97 | 95 |
| 98 #endif // ExternalPopupMenu_h | 96 #endif // ExternalPopupMenu_h |
| OLD | NEW |