| Index: app/surface/transport_dib_mac.cc
|
| ===================================================================
|
| --- app/surface/transport_dib_mac.cc (revision 49999)
|
| +++ app/surface/transport_dib_mac.cc (working copy)
|
| @@ -8,7 +8,6 @@
|
| #include <sys/stat.h>
|
|
|
| #include "base/eintr_wrapper.h"
|
| -#include "base/logging.h"
|
| #include "base/scoped_ptr.h"
|
| #include "base/shared_memory.h"
|
| #include "skia/ext/platform_canvas.h"
|
| @@ -48,8 +47,7 @@
|
| if ((fstat(handle.fd, &st) != 0) ||
|
| (!dib->shared_memory_.Map(st.st_size))) {
|
| delete dib;
|
| - if (HANDLE_EINTR(close(handle.fd)) < 0)
|
| - PLOG(ERROR) << "close";
|
| + HANDLE_EINTR(close(handle.fd));
|
| return NULL;
|
| }
|
|
|
|
|