OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // WebWidget functions: | 68 // WebWidget functions: |
69 virtual void close() OVERRIDE; | 69 virtual void close() OVERRIDE; |
70 virtual WebSize size() OVERRIDE { return m_size; } | 70 virtual WebSize size() OVERRIDE { return m_size; } |
71 virtual void willStartLiveResize() OVERRIDE; | 71 virtual void willStartLiveResize() OVERRIDE; |
72 virtual void resize(const WebSize&) OVERRIDE; | 72 virtual void resize(const WebSize&) OVERRIDE; |
73 virtual void willEndLiveResize() OVERRIDE; | 73 virtual void willEndLiveResize() OVERRIDE; |
74 virtual void animate(double frameBeginTime) OVERRIDE; | 74 virtual void animate(double frameBeginTime) OVERRIDE; |
75 virtual void layout() OVERRIDE; | 75 virtual void layout() OVERRIDE; |
76 virtual void paint(WebCanvas*, const WebRect&) OVERRIDE; | 76 virtual void paint(WebCanvas*, const WebRect&) OVERRIDE; |
77 virtual void themeChanged() OVERRIDE; | 77 virtual void themeChanged() OVERRIDE; |
| 78 virtual void setCompositorSurfaceReady() OVERRIDE; |
78 virtual void composite(bool finish) OVERRIDE; | 79 virtual void composite(bool finish) OVERRIDE; |
79 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE; | 80 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE; |
80 virtual void mouseCaptureLost() OVERRIDE; | 81 virtual void mouseCaptureLost() OVERRIDE; |
81 virtual void setFocus(bool enable) OVERRIDE; | 82 virtual void setFocus(bool enable) OVERRIDE; |
82 virtual bool setComposition( | 83 virtual bool setComposition( |
83 const WebString& text, | 84 const WebString& text, |
84 const WebVector<WebCompositionUnderline>& underlines, | 85 const WebVector<WebCompositionUnderline>& underlines, |
85 int selectionStart, int selectionEnd) OVERRIDE; | 86 int selectionStart, int selectionEnd) OVERRIDE; |
86 virtual bool confirmComposition() OVERRIDE; | 87 virtual bool confirmComposition() OVERRIDE; |
87 virtual bool confirmComposition(const WebString& text) OVERRIDE; | 88 virtual bool confirmComposition(const WebString& text) OVERRIDE; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 WebPoint m_lastMousePosition; | 138 WebPoint m_lastMousePosition; |
138 | 139 |
139 // This is a non-owning ref. The popup will notify us via popupClosed() | 140 // This is a non-owning ref. The popup will notify us via popupClosed() |
140 // before it is destroyed. | 141 // before it is destroyed. |
141 WebCore::FramelessScrollView* m_widget; | 142 WebCore::FramelessScrollView* m_widget; |
142 }; | 143 }; |
143 | 144 |
144 } // namespace WebKit | 145 } // namespace WebKit |
145 | 146 |
146 #endif | 147 #endif |
OLD | NEW |