| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/frame/DOMWindowProperty.h" | 35 #include "core/frame/DOMWindowProperty.h" |
| 36 #include "core/plugins/PluginView.h" | 36 #include "core/plugins/PluginView.h" |
| 37 #include "platform/Widget.h" | 37 #include "platform/Widget.h" |
| 38 #include "public/web/WebPluginContainer.h" | 38 #include "public/web/WebPluginContainer.h" |
| 39 #include "web/WebExport.h" | 39 #include "web/WebExport.h" |
| 40 #include "wtf/Compiler.h" | 40 #include "wtf/Compiler.h" |
| 41 #include "wtf/PassRefPtr.h" | 41 #include "wtf/PassRefPtr.h" |
| 42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 43 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 44 | 44 |
| 45 struct NPObject; | |
| 46 | |
| 47 namespace blink { | 45 namespace blink { |
| 48 | 46 |
| 49 class GestureEvent; | 47 class GestureEvent; |
| 50 class HTMLFrameOwnerElement; | 48 class HTMLFrameOwnerElement; |
| 51 class HTMLPlugInElement; | 49 class HTMLPlugInElement; |
| 52 class IntRect; | 50 class IntRect; |
| 53 class KeyboardEvent; | 51 class KeyboardEvent; |
| 54 class MouseEvent; | 52 class MouseEvent; |
| 55 class ResourceError; | 53 class ResourceError; |
| 56 class ResourceResponse; | 54 class ResourceResponse; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // WebPluginContainerImpl is the only subclass of WebPluginContainer. | 229 // WebPluginContainerImpl is the only subclass of WebPluginContainer. |
| 232 DEFINE_TYPE_CASTS(WebPluginContainerImpl, | 230 DEFINE_TYPE_CASTS(WebPluginContainerImpl, |
| 233 WebPluginContainer, | 231 WebPluginContainer, |
| 234 container, | 232 container, |
| 235 true, | 233 true, |
| 236 true); | 234 true); |
| 237 | 235 |
| 238 } // namespace blink | 236 } // namespace blink |
| 239 | 237 |
| 240 #endif | 238 #endif |
| OLD | NEW |