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 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 virtual void layout() OVERRIDE FINAL; | 52 virtual void layout() OVERRIDE FINAL; |
53 | 53 |
54 private: | 54 private: |
55 virtual const char* renderName() const OVERRIDE { return "RenderEmbeddedObje
ct"; } | 55 virtual const char* renderName() const OVERRIDE { return "RenderEmbeddedObje
ct"; } |
56 virtual bool isEmbeddedObject() const OVERRIDE FINAL { return true; } | 56 virtual bool isEmbeddedObject() const OVERRIDE FINAL { return true; } |
57 virtual RenderBox* embeddedContentBox() const OVERRIDE FINAL; | 57 virtual RenderBox* embeddedContentBox() const OVERRIDE FINAL; |
58 | 58 |
59 void paintSnapshotImage(PaintInfo&, const LayoutPoint&, Image*); | 59 void paintSnapshotImage(PaintInfo&, const LayoutPoint&, Image*); |
60 virtual void paintContents(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL; | 60 virtual void paintContents(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL; |
61 | 61 |
| 62 virtual LayerType layerTypeRequired() const OVERRIDE FINAL; |
| 63 |
62 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OV
ERRIDE FINAL; | 64 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OV
ERRIDE FINAL; |
63 | 65 |
64 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatR
ect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float&
textWidth) const; | 66 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatR
ect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float&
textWidth) const; |
65 | 67 |
66 virtual CompositingReasons additionalCompositingReasons(CompositingTriggerFl
ags) const OVERRIDE; | 68 virtual CompositingReasons additionalCompositingReasons(CompositingTriggerFl
ags) const OVERRIDE; |
67 | 69 |
68 bool m_showsUnavailablePluginIndicator; | 70 bool m_showsUnavailablePluginIndicator; |
69 PluginUnavailabilityReason m_pluginUnavailabilityReason; | 71 PluginUnavailabilityReason m_pluginUnavailabilityReason; |
70 String m_unavailablePluginReplacementText; | 72 String m_unavailablePluginReplacementText; |
71 }; | 73 }; |
72 | 74 |
73 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderEmbeddedObject, isEmbeddedObject()); | 75 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderEmbeddedObject, isEmbeddedObject()); |
74 | 76 |
75 } // namespace WebCore | 77 } // namespace WebCore |
76 | 78 |
77 #endif // RenderEmbeddedObject_h | 79 #endif // RenderEmbeddedObject_h |
OLD | NEW |