| 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 | |
| 64 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OV
ERRIDE FINAL; | 62 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OV
ERRIDE FINAL; |
| 65 | 63 |
| 66 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatR
ect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float&
textWidth) const; | 64 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatR
ect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float&
textWidth) const; |
| 67 | 65 |
| 68 virtual CompositingReasons additionalCompositingReasons(CompositingTriggerFl
ags) const OVERRIDE; | 66 virtual CompositingReasons additionalCompositingReasons(CompositingTriggerFl
ags) const OVERRIDE; |
| 69 | 67 |
| 70 bool m_showsUnavailablePluginIndicator; | 68 bool m_showsUnavailablePluginIndicator; |
| 71 PluginUnavailabilityReason m_pluginUnavailabilityReason; | 69 PluginUnavailabilityReason m_pluginUnavailabilityReason; |
| 72 String m_unavailablePluginReplacementText; | 70 String m_unavailablePluginReplacementText; |
| 73 }; | 71 }; |
| 74 | 72 |
| 75 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderEmbeddedObject, isEmbeddedObject()); | 73 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderEmbeddedObject, isEmbeddedObject()); |
| 76 | 74 |
| 77 } // namespace WebCore | 75 } // namespace WebCore |
| 78 | 76 |
| 79 #endif // RenderEmbeddedObject_h | 77 #endif // RenderEmbeddedObject_h |
| OLD | NEW |