| 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 17 matching lines...) Expand all Loading... |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef WebPluginContainerImpl_h | 32 #ifndef WebPluginContainerImpl_h |
| 33 #define WebPluginContainerImpl_h | 33 #define WebPluginContainerImpl_h |
| 34 | 34 |
| 35 #include "core/dom/ContextLifecycleObserver.h" | 35 #include "core/dom/ContextLifecycleObserver.h" |
| 36 #include "core/plugins/PluginView.h" | 36 #include "core/plugins/PluginView.h" |
| 37 #include "platform/FrameViewBase.h" | 37 #include "platform/FrameViewBase.h" |
| 38 #include "platform/wtf/Compiler.h" |
| 39 #include "platform/wtf/PassRefPtr.h" |
| 40 #include "platform/wtf/Vector.h" |
| 41 #include "platform/wtf/text/WTFString.h" |
| 38 #include "public/web/WebPluginContainer.h" | 42 #include "public/web/WebPluginContainer.h" |
| 39 #include "web/WebExport.h" | 43 #include "web/WebExport.h" |
| 40 #include "wtf/Compiler.h" | |
| 41 #include "wtf/PassRefPtr.h" | |
| 42 #include "wtf/Vector.h" | |
| 43 #include "wtf/text/WTFString.h" | |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class GestureEvent; | 47 class GestureEvent; |
| 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; |
| (...skipping 174 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 |