| Index: ui/surface/transport_dib_win.cc
|
| diff --git a/ui/surface/transport_dib_win.cc b/ui/surface/transport_dib_win.cc
|
| index 2d5d5d125cded09b38131b4e80524d5f156af681..82eabf878785e51f74f000ecfc2acf8e8f075235 100644
|
| --- a/ui/surface/transport_dib_win.cc
|
| +++ b/ui/surface/transport_dib_win.cc
|
| @@ -5,6 +5,8 @@
|
| #include "ui/surface/transport_dib.h"
|
|
|
| #include <windows.h>
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
|
|
| #include <limits>
|
|
|
| @@ -24,7 +26,7 @@ TransportDIB::TransportDIB(base::SharedMemoryHandle handle)
|
| : shared_memory_(handle, false /* read write */), size_(0) {}
|
|
|
| // static
|
| -TransportDIB* TransportDIB::Create(size_t size, uint32 sequence_num) {
|
| +TransportDIB* TransportDIB::Create(size_t size, uint32_t sequence_num) {
|
| TransportDIB* dib = new TransportDIB;
|
|
|
| if (!dib->shared_memory_.CreateAnonymous(size)) {
|
|
|