Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1257)

Unified Diff: Source/core/rendering/RenderReplaced.h

Issue 930833003: Move and rename RenderReplaced and RenderHTMLCanvas to Layout{Replaced,HTMLCanvas}. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No need to declare renderName() at all. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderPart.cpp ('k') | Source/core/rendering/RenderReplaced.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderReplaced.h
diff --git a/Source/core/rendering/RenderReplaced.h b/Source/core/rendering/RenderReplaced.h
deleted file mode 100644
index 9ea015245951ffb5252183690cd7a04c51b19214..0000000000000000000000000000000000000000
--- a/Source/core/rendering/RenderReplaced.h
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
- * Copyright (C) 2004, 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#ifndef RenderReplaced_h
-#define RenderReplaced_h
-
-#include "core/rendering/RenderBox.h"
-
-namespace blink {
-
-class RenderReplaced : public RenderBox {
-public:
- RenderReplaced(Element*);
- RenderReplaced(Element*, const LayoutSize& intrinsicSize);
- virtual ~RenderReplaced();
-
- virtual LayoutUnit computeReplacedLogicalWidth(ShouldComputePreferred = ComputeActual) const override;
- virtual LayoutUnit computeReplacedLogicalHeight() const override;
-
- bool hasReplacedLogicalHeight() const;
- LayoutRect replacedContentRect(const LayoutSize* overriddenIntrinsicSize = 0) const;
-
- virtual bool needsPreferredWidthsRecalculation() const override;
-
- // These values are specified to be 300 and 150 pixels in the CSS 2.1 spec.
- // http://www.w3.org/TR/CSS2/visudet.html#inline-replaced-width
- static const int defaultWidth;
- static const int defaultHeight;
- virtual bool canHaveChildren() const override { return false; }
- bool shouldPaint(const PaintInfo&, const LayoutPoint&) const;
- virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) { }
- LayoutRect localSelectionRect(bool checkWhetherSelected = true) const; // This is in local coordinates, but it's a physical rect (so the top left corner is physical top left).
-
- virtual void paint(const PaintInfo&, const LayoutPoint&) override;
-
- bool isSelected() const;
-
-protected:
- virtual void willBeDestroyed() override;
-
- virtual void layout() override;
-
- virtual LayoutSize intrinsicSize() const override final { return m_intrinsicSize; }
- virtual void computeIntrinsicRatioInformation(FloatSize& intrinsicSize, double& intrinsicRatio) const override;
-
- virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override final;
-
- virtual LayoutUnit intrinsicContentLogicalHeight() const { return intrinsicLogicalHeight(); }
-
- virtual LayoutUnit minimumReplacedHeight() const { return LayoutUnit(); }
-
- virtual void setSelectionState(SelectionState) override final;
-
- virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) override;
-
- void setIntrinsicSize(const LayoutSize& intrinsicSize) { m_intrinsicSize = intrinsicSize; }
- virtual void intrinsicSizeChanged();
-
- virtual RenderBox* embeddedContentBox() const { return 0; }
-
-private:
- virtual const char* renderName() const override { return "RenderReplaced"; }
-
- virtual void computePreferredLogicalWidths() override final;
-
- virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override;
-
- virtual PositionWithAffinity positionForPoint(const LayoutPoint&) override final;
-
- virtual bool canBeSelectionLeaf() const override { return true; }
-
- virtual LayoutRect selectionRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer) const override final;
- void computeAspectRatioInformationForRenderBox(RenderBox*, FloatSize& constrainedSize, double& intrinsicRatio) const;
-
- mutable LayoutSize m_intrinsicSize;
-};
-
-}
-
-#endif
« no previous file with comments | « Source/core/rendering/RenderPart.cpp ('k') | Source/core/rendering/RenderReplaced.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698