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. |
11 * | 11 * |
12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Library General Public License for more details. | 15 * Library General Public License for more details. |
16 * | 16 * |
17 * You should have received a copy of the GNU Library General Public License | 17 * You should have received a copy of the GNU Library General Public License |
18 * along with this library; see the file COPYING.LIB. If not, write to | 18 * along with this library; see the file COPYING.LIB. If not, write to |
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 * Boston, MA 02110-1301, USA. | 20 * Boston, MA 02110-1301, USA. |
21 * | 21 * |
22 */ | 22 */ |
23 | 23 |
24 #include "config.h" | 24 #include "config.h" |
25 #include "RenderEmbeddedObject.h" | 25 #include "RenderEmbeddedObject.h" |
26 | 26 |
| 27 #include "CSSValueKeywords.h" |
27 #include "Chrome.h" | 28 #include "Chrome.h" |
28 #include "ChromeClient.h" | 29 #include "ChromeClient.h" |
29 #include "Cursor.h" | 30 #include "Cursor.h" |
30 #include "CSSValueKeywords.h" | 31 #include "EventHandler.h" |
31 #include "Font.h" | 32 #include "Font.h" |
32 #include "FontSelector.h" | 33 #include "FontSelector.h" |
33 #include "Frame.h" | 34 #include "Frame.h" |
34 #include "FrameLoaderClient.h" | 35 #include "FrameLoaderClient.h" |
35 #include "GraphicsContext.h" | 36 #include "GraphicsContext.h" |
36 #include "HTMLEmbedElement.h" | 37 #include "HTMLEmbedElement.h" |
37 #include "HTMLIFrameElement.h" | 38 #include "HTMLIFrameElement.h" |
38 #include "HTMLNames.h" | 39 #include "HTMLNames.h" |
39 #include "HTMLObjectElement.h" | 40 #include "HTMLObjectElement.h" |
40 #include "HTMLParamElement.h" | 41 #include "HTMLParamElement.h" |
41 #include "HTMLPlugInElement.h" | 42 #include "HTMLPlugInElement.h" |
42 #include "HitTestResult.h" | 43 #include "HitTestResult.h" |
43 #include "LocalizedStrings.h" | 44 #include "LocalizedStrings.h" |
44 #include "MIMETypeRegistry.h" | 45 #include "MIMETypeRegistry.h" |
45 #include "MouseEvent.h" | 46 #include "MouseEvent.h" |
46 #include "Page.h" | 47 #include "Page.h" |
47 #include "PaintInfo.h" | 48 #include "PaintInfo.h" |
48 #include "Path.h" | 49 #include "Path.h" |
| 50 #include "PlatformMouseEvent.h" |
49 #include "PluginViewBase.h" | 51 #include "PluginViewBase.h" |
50 #include "RenderTheme.h" | 52 #include "RenderTheme.h" |
51 #include "RenderView.h" | 53 #include "RenderView.h" |
52 #include "RenderWidgetProtector.h" | 54 #include "RenderWidgetProtector.h" |
53 #include "Settings.h" | 55 #include "Settings.h" |
54 #include "Text.h" | 56 #include "Text.h" |
55 #include "TextRun.h" | 57 #include "TextRun.h" |
56 | 58 |
57 namespace WebCore { | 59 namespace WebCore { |
58 | 60 |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 } | 428 } |
427 return RenderPart::getCursor(point, cursor); | 429 return RenderPart::getCursor(point, cursor); |
428 } | 430 } |
429 | 431 |
430 bool RenderEmbeddedObject::canHaveChildren() const | 432 bool RenderEmbeddedObject::canHaveChildren() const |
431 { | 433 { |
432 return false; | 434 return false; |
433 } | 435 } |
434 | 436 |
435 } | 437 } |
OLD | NEW |