OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Nokia Inc. All rights reserved. | 2 * Copyright (C) 2011 Nokia Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 4 * |
4 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
8 * | 9 * |
9 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 * Library General Public License for more details. | 13 * Library General Public License for more details. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ASSERT(!object || object->isQuote()); | 60 ASSERT(!object || object->isQuote()); |
60 return static_cast<RenderQuote*>(object); | 61 return static_cast<RenderQuote*>(object); |
61 } | 62 } |
62 | 63 |
63 // This will catch anyone doing an unnecessary cast. | 64 // This will catch anyone doing an unnecessary cast. |
64 void toRenderQuote(const RenderQuote*); | 65 void toRenderQuote(const RenderQuote*); |
65 | 66 |
66 } // namespace WebCore | 67 } // namespace WebCore |
67 | 68 |
68 #endif // RenderQuote_h | 69 #endif // RenderQuote_h |
OLD | NEW |