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

Side by Side Diff: third_party/WebKit/Source/platform/geometry/IntRect.cpp

Issue 2191233002: Add platform/geometry pretty printers for logging and testing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fewer redundant spaces, more toString tests Created 4 years, 4 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/geometry/IntRect.h ('k') | third_party/WebKit/Source/platform/geometry/IntRectTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698