OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 3 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
5 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "config.h" | 24 #include "config.h" |
25 #include "core/rendering/RenderEmbeddedObject.h" | 25 #include "core/rendering/RenderEmbeddedObject.h" |
26 | 26 |
27 #include "CSSValueKeywords.h" | 27 #include "CSSValueKeywords.h" |
28 #include "HTMLEmbedElement.h" | 28 #include "HTMLEmbedElement.h" |
29 #include "HTMLIFrameElement.h" | 29 #include "HTMLIFrameElement.h" |
30 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
31 #include "HTMLObjectElement.h" | 31 #include "HTMLObjectElement.h" |
32 #include "HTMLParamElement.h" | 32 #include "HTMLParamElement.h" |
33 #include "HTMLPlugInElement.h" | 33 #include "HTMLPlugInElement.h" |
34 #include "MouseEvent.h" | |
35 #include "PluginViewBase.h" | 34 #include "PluginViewBase.h" |
36 #include "Text.h" | 35 #include "core/dom/MouseEvent.h" |
| 36 #include "core/dom/Text.h" |
37 #include "core/loader/FrameLoaderClient.h" | 37 #include "core/loader/FrameLoaderClient.h" |
38 #include "core/page/Chrome.h" | 38 #include "core/page/Chrome.h" |
39 #include "core/page/ChromeClient.h" | 39 #include "core/page/ChromeClient.h" |
40 #include "core/page/EventHandler.h" | 40 #include "core/page/EventHandler.h" |
41 #include "core/page/Frame.h" | 41 #include "core/page/Frame.h" |
42 #include "core/page/Page.h" | 42 #include "core/page/Page.h" |
43 #include "core/page/Settings.h" | 43 #include "core/page/Settings.h" |
44 #include "core/platform/Cursor.h" | 44 #include "core/platform/Cursor.h" |
45 #include "core/platform/LocalizedStrings.h" | 45 #include "core/platform/LocalizedStrings.h" |
46 #include "core/platform/MIMETypeRegistry.h" | 46 #include "core/platform/MIMETypeRegistry.h" |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 } | 428 } |
429 return RenderPart::getCursor(point, cursor); | 429 return RenderPart::getCursor(point, cursor); |
430 } | 430 } |
431 | 431 |
432 bool RenderEmbeddedObject::canHaveChildren() const | 432 bool RenderEmbeddedObject::canHaveChildren() const |
433 { | 433 { |
434 return false; | 434 return false; |
435 } | 435 } |
436 | 436 |
437 } | 437 } |
OLD | NEW |