| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #ifndef LayoutReplica_h | 29 #ifndef LayoutReplica_h |
| 30 #define LayoutReplica_h | 30 #define LayoutReplica_h |
| 31 | 31 |
| 32 #include "core/layout/LayoutBox.h" | 32 #include "core/layout/LayoutBox.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class LayoutReplica final : public LayoutBox { | 36 class LayoutReplica final : public LayoutBox { |
| 37 public: | 37 public: |
| 38 static LayoutReplica* createAnonymous(Document*); | 38 static LayoutReplica* createAnonymous(Document*); |
| 39 ~LayoutReplica() override; |
| 39 | 40 |
| 40 virtual ~LayoutReplica(); | 41 const char* name() const override { return "LayoutReplica"; } |
| 41 | 42 |
| 42 virtual const char* name() const override { return "LayoutReplica"; } | 43 DeprecatedPaintLayerType layerTypeRequired() const override { return NormalD
eprecatedPaintLayer; } |
| 43 | 44 |
| 44 virtual DeprecatedPaintLayerType layerTypeRequired() const override { return
NormalDeprecatedPaintLayer; } | 45 void layout() override; |
| 45 | 46 |
| 46 virtual void layout() override; | 47 void paint(const PaintInfo&, const LayoutPoint&) override; |
| 47 | |
| 48 virtual void paint(const PaintInfo&, const LayoutPoint&) override; | |
| 49 | 48 |
| 50 private: | 49 private: |
| 51 LayoutReplica(); | 50 LayoutReplica(); |
| 52 | 51 |
| 53 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectReplica || LayoutBox::isOfType(type); } | 52 bool isOfType(LayoutObjectType type) const override { return type == LayoutO
bjectReplica || LayoutBox::isOfType(type); } |
| 54 virtual void computePreferredLogicalWidths() override; | 53 void computePreferredLogicalWidths() override; |
| 55 | 54 |
| 56 }; | 55 }; |
| 57 | 56 |
| 58 } // namespace blink | 57 } // namespace blink |
| 59 | 58 |
| 60 #endif // LayoutReplica_h | 59 #endif // LayoutReplica_h |
| OLD | NEW |