| Index: gfx/size.cc
|
| diff --git a/gfx/size.cc b/gfx/size.cc
|
| index d450f208556aba594154423c7eef97642b0003ec..90ff1da68b5bd3a99ab731db6750bf9e9fcddd33 100644
|
| --- a/gfx/size.cc
|
| +++ b/gfx/size.cc
|
| @@ -49,7 +49,7 @@ CGSize Size::ToCGSize() const {
|
|
|
| void Size::set_width(int width) {
|
| if (width < 0) {
|
| - NOTREACHED();
|
| + NOTREACHED() << "negative width:" << this;
|
| width = 0;
|
| }
|
| width_ = width;
|
| @@ -57,7 +57,7 @@ void Size::set_width(int width) {
|
|
|
| void Size::set_height(int height) {
|
| if (height < 0) {
|
| - NOTREACHED();
|
| + NOTREACHED() << "negative height:" << this;
|
| height = 0;
|
| }
|
| height_ = height;
|
|
|