OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2009 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 if (!count) | 180 if (!count) |
181 return IntRect(); | 181 return IntRect(); |
182 | 182 |
183 IntRect result = rects[0]; | 183 IntRect result = rects[0]; |
184 for (size_t i = 1; i < count; ++i) | 184 for (size_t i = 1; i < count; ++i) |
185 result.uniteEvenIfEmpty(rects[i]); | 185 result.uniteEvenIfEmpty(rects[i]); |
186 | 186 |
187 return result; | 187 return result; |
188 } | 188 } |
189 | 189 |
190 #ifndef NDEBUG | |
191 // Prints the rect to the screen. | |
192 void IntRect::show() const | |
193 { | |
194 LayoutRect(*this).show(); | |
195 } | |
196 | |
197 String IntRect::toString() const | 190 String IntRect::toString() const |
198 { | 191 { |
199 return String::format("%s %s", location().toString().ascii().data(), size().
toString().ascii().data()); | 192 return String::format("%s %s", |
| 193 location().toString().ascii().data(), |
| 194 size().toString().ascii().data()); |
200 } | 195 } |
201 #endif | |
202 | 196 |
203 } // namespace blink | 197 } // namespace blink |
OLD | NEW |