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

Side by Side Diff: third_party/WebKit/WebCore/rendering/RenderSVGHiddenContainer.cpp

Issue 21165: Revert the merge. Mac build is mysteriously broken. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * This file is part of the WebKit project. 2 * This file is part of the WebKit project.
3 * 3 *
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 64 }
65 65
66 setNeedsLayout(false); 66 setNeedsLayout(false);
67 } 67 }
68 68
69 void RenderSVGHiddenContainer::paint(PaintInfo&, int, int) 69 void RenderSVGHiddenContainer::paint(PaintInfo&, int, int)
70 { 70 {
71 // This subtree does not paint. 71 // This subtree does not paint.
72 } 72 }
73 73
74 IntRect RenderSVGHiddenContainer::clippedOverflowRectForRepaint(RenderBoxModelOb ject* /*repaintContainer*/) 74 IntRect RenderSVGHiddenContainer::clippedOverflowRectForRepaint(RenderBox* /*rep aintContainer*/)
75 { 75 {
76 return IntRect(); 76 return IntRect();
77 } 77 }
78 78
79 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>&, int, int, bool) 79 void RenderSVGHiddenContainer::absoluteRects(Vector<IntRect>&, int, int, bool)
80 { 80 {
81 // This subtree does not take up space or paint 81 // This subtree does not take up space or paint
82 } 82 }
83 83
84 void RenderSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>&, bool) 84 void RenderSVGHiddenContainer::absoluteQuads(Vector<FloatQuad>&, bool)
(...skipping 17 matching lines...) Expand all
102 } 102 }
103 103
104 FloatRect RenderSVGHiddenContainer::relativeBBox(bool) const 104 FloatRect RenderSVGHiddenContainer::relativeBBox(bool) const
105 { 105 {
106 return FloatRect(); 106 return FloatRect();
107 } 107 }
108 108
109 } 109 }
110 110
111 #endif // ENABLE(SVG) 111 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/rendering/RenderSVGHiddenContainer.h ('k') | third_party/WebKit/WebCore/rendering/RenderSVGImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698