| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class HTMLFrameOwnerElement; | 48 class HTMLFrameOwnerElement; |
| 49 class HTMLPlugInElement; | 49 class HTMLPlugInElement; |
| 50 class IntRect; | 50 class IntRect; |
| 51 class KeyboardEvent; | 51 class KeyboardEvent; |
| 52 class MouseEvent; | 52 class MouseEvent; |
| 53 class ResourceError; | 53 class ResourceError; |
| 54 class ResourceResponse; | 54 class ResourceResponse; |
| 55 class TouchEvent; | 55 class TouchEvent; |
| 56 class WebPlugin; | 56 class WebPlugin; |
| 57 class WheelEvent; | 57 class WheelEvent; |
| 58 class Widget; | |
| 59 struct WebPrintParams; | 58 struct WebPrintParams; |
| 60 struct WebPrintPresetOptions; | 59 struct WebPrintPresetOptions; |
| 61 | 60 |
| 62 class WEB_EXPORT WebPluginContainerImpl final | 61 class WEB_EXPORT WebPluginContainerImpl final |
| 63 : public PluginView, | 62 : public PluginView, |
| 64 NON_EXPORTED_BASE(public WebPluginContainer), | 63 NON_EXPORTED_BASE(public WebPluginContainer), |
| 65 public ContextClient { | 64 public ContextClient { |
| 66 USING_GARBAGE_COLLECTED_MIXIN(WebPluginContainerImpl); | 65 USING_GARBAGE_COLLECTED_MIXIN(WebPluginContainerImpl); |
| 67 USING_PRE_FINALIZER(WebPluginContainerImpl, dispose); | 66 USING_PRE_FINALIZER(WebPluginContainerImpl, dispose); |
| 68 | 67 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 // WebPluginContainerImpl is the only subclass of WebPluginContainer. | 228 // WebPluginContainerImpl is the only subclass of WebPluginContainer. |
| 230 DEFINE_TYPE_CASTS(WebPluginContainerImpl, | 229 DEFINE_TYPE_CASTS(WebPluginContainerImpl, |
| 231 WebPluginContainer, | 230 WebPluginContainer, |
| 232 container, | 231 container, |
| 233 true, | 232 true, |
| 234 true); | 233 true); |
| 235 | 234 |
| 236 } // namespace blink | 235 } // namespace blink |
| 237 | 236 |
| 238 #endif | 237 #endif |
| OLD | NEW |