| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // FrameViewBase methods | 84 // FrameViewBase methods |
| 85 void setFrameRect(const IntRect&) override; | 85 void setFrameRect(const IntRect&) override; |
| 86 void paint(GraphicsContext&, const CullRect&) const override; | 86 void paint(GraphicsContext&, const CullRect&) const override; |
| 87 void invalidateRect(const IntRect&) override; | 87 void invalidateRect(const IntRect&) override; |
| 88 void setFocused(bool, WebFocusType) override; | 88 void setFocused(bool, WebFocusType) override; |
| 89 void show() override; | 89 void show() override; |
| 90 void hide() override; | 90 void hide() override; |
| 91 void handleEvent(Event*) override; | 91 void handleEvent(Event*) override; |
| 92 void frameRectsChanged() override; | 92 void frameRectsChanged() override; |
| 93 void setParentVisible(bool) override; | 93 void setParentVisible(bool) override; |
| 94 void widgetGeometryMayHaveChanged() override; | 94 void geometryMayHaveChanged() override; |
| 95 bool isPluginContainer() const override { return true; } | 95 bool isPluginContainer() const override { return true; } |
| 96 void eventListenersRemoved() override; | 96 void eventListenersRemoved() override; |
| 97 | 97 |
| 98 // WebPluginContainer methods | 98 // WebPluginContainer methods |
| 99 WebElement element() override; | 99 WebElement element() override; |
| 100 WebDocument document() override; | 100 WebDocument document() override; |
| 101 void dispatchProgressEvent(const WebString& type, | 101 void dispatchProgressEvent(const WebString& type, |
| 102 bool lengthComputable, | 102 bool lengthComputable, |
| 103 unsigned long long loaded, | 103 unsigned long long loaded, |
| 104 unsigned long long total, | 104 unsigned long long total, |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 // WebPluginContainerImpl is the only subclass of WebPluginContainer. | 228 // WebPluginContainerImpl is the only subclass of WebPluginContainer. |
| 229 DEFINE_TYPE_CASTS(WebPluginContainerImpl, | 229 DEFINE_TYPE_CASTS(WebPluginContainerImpl, |
| 230 WebPluginContainer, | 230 WebPluginContainer, |
| 231 container, | 231 container, |
| 232 true, | 232 true, |
| 233 true); | 233 true); |
| 234 | 234 |
| 235 } // namespace blink | 235 } // namespace blink |
| 236 | 236 |
| 237 #endif | 237 #endif |
| OLD | NEW |