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

Side by Side Diff: Source/core/rendering/RenderTableCaption.h

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: define RenderObject::frameView in the header Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableCell.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net> 2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 17 matching lines...) Expand all
28 28
29 class RenderTableCaption FINAL : public RenderBlock { 29 class RenderTableCaption FINAL : public RenderBlock {
30 public: 30 public:
31 explicit RenderTableCaption(Element*); 31 explicit RenderTableCaption(Element*);
32 virtual ~RenderTableCaption(); 32 virtual ~RenderTableCaption();
33 virtual LayoutUnit containingBlockLogicalWidthForContent() const OVERRIDE; 33 virtual LayoutUnit containingBlockLogicalWidthForContent() const OVERRIDE;
34 34
35 private: 35 private:
36 virtual bool isTableCaption() const OVERRIDE { return true; } 36 virtual bool isTableCaption() const OVERRIDE { return true; }
37 37
38 virtual bool supportsPartialLayout() const OVERRIDE { return false; }
39
38 virtual void insertedIntoTree() OVERRIDE; 40 virtual void insertedIntoTree() OVERRIDE;
39 virtual void willBeRemovedFromTree() OVERRIDE; 41 virtual void willBeRemovedFromTree() OVERRIDE;
40 42
41 RenderTable* table() const; 43 RenderTable* table() const;
42 }; 44 };
43 45
44 inline RenderTableCaption* toRenderTableCaption(RenderObject* object) 46 inline RenderTableCaption* toRenderTableCaption(RenderObject* object)
45 { 47 {
46 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); 48 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption());
47 return static_cast<RenderTableCaption*>(object); 49 return static_cast<RenderTableCaption*>(object);
48 } 50 }
49 51
50 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object ) 52 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object )
51 { 53 {
52 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); 54 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption());
53 return static_cast<const RenderTableCaption*>(object); 55 return static_cast<const RenderTableCaption*>(object);
54 } 56 }
55 57
56 // This will catch anyone doing an unnecessary cast. 58 // This will catch anyone doing an unnecessary cast.
57 void toRenderTableCaption(const RenderTableCaption*); 59 void toRenderTableCaption(const RenderTableCaption*);
58 60
59 } // namespace WebCore 61 } // namespace WebCore
60 62
61 #endif // RenderTableCaption_h 63 #endif // RenderTableCaption_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698