| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 bool getFormValue(String&) override; | 75 bool getFormValue(String&) override; |
| 76 bool supportsKeyboardFocus() const override; | 76 bool supportsKeyboardFocus() const override; |
| 77 bool supportsInputMethod() const override; | 77 bool supportsInputMethod() const override; |
| 78 bool canProcessDrag() const override; | 78 bool canProcessDrag() const override; |
| 79 bool wantsWheelEvents() override; | 79 bool wantsWheelEvents() override; |
| 80 void layoutIfNeeded() override; | 80 void layoutIfNeeded() override; |
| 81 void invalidatePaintIfNeeded() override { issuePaintInvalidations(); } | 81 void invalidatePaintIfNeeded() override { issuePaintInvalidations(); } |
| 82 | 82 |
| 83 // Widget methods | 83 // Widget methods |
| 84 void setFrameRect(const IntRect&) override; | 84 void setFrameRect(const IntRect&) override; |
| 85 void paint(GraphicsContext*, const IntRect&) const override; | 85 void paint(GraphicsContext*, const CullRect&) const override; |
| 86 void invalidateRect(const IntRect&) override; | 86 void invalidateRect(const IntRect&) override; |
| 87 void setFocus(bool, WebFocusType) override; | 87 void setFocus(bool, WebFocusType) override; |
| 88 void show() override; | 88 void show() override; |
| 89 void hide() override; | 89 void hide() override; |
| 90 void handleEvent(Event*) override; | 90 void handleEvent(Event*) override; |
| 91 void frameRectsChanged() override; | 91 void frameRectsChanged() override; |
| 92 void setParentVisible(bool) override; | 92 void setParentVisible(bool) override; |
| 93 void setParent(Widget*) override; | 93 void setParent(Widget*) override; |
| 94 void widgetPositionsUpdated() override; | 94 void widgetPositionsUpdated() override; |
| 95 bool isPluginContainer() const override { return true; } | 95 bool isPluginContainer() const override { return true; } |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 }; | 210 }; |
| 211 | 211 |
| 212 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai
ner(), widget.isPluginContainer()); | 212 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai
ner(), widget.isPluginContainer()); |
| 213 // Unlike Widget, we need not worry about object type for container. | 213 // Unlike Widget, we need not worry about object type for container. |
| 214 // WebPluginContainerImpl is the only subclass of WebPluginContainer. | 214 // WebPluginContainerImpl is the only subclass of WebPluginContainer. |
| 215 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t
rue); | 215 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t
rue); |
| 216 | 216 |
| 217 } // namespace blink | 217 } // namespace blink |
| 218 | 218 |
| 219 #endif | 219 #endif |
| OLD | NEW |