| Index: remoting/host/resizing_host_observer.cc
|
| diff --git a/remoting/host/resizing_host_observer.cc b/remoting/host/resizing_host_observer.cc
|
| index 60a9046ab3f7fb39eb656cc7a33672e90796b352..31edab97a7cf214395e4d4643290be81ab7ae18a 100644
|
| --- a/remoting/host/resizing_host_observer.cc
|
| +++ b/remoting/host/resizing_host_observer.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "remoting/host/resizing_host_observer.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <list>
|
|
|
| #include "base/bind.h"
|
| @@ -67,9 +69,9 @@ class CandidateResolution {
|
| const ScreenResolution& resolution() const { return resolution_; }
|
| float client_scale_factor() const { return client_scale_factor_; }
|
| float aspect_ratio_goodness() const { return aspect_ratio_goodness_; }
|
| - int64 area() const {
|
| - return static_cast<int64>(resolution_.dimensions().width()) *
|
| - resolution_.dimensions().height();
|
| + int64_t area() const {
|
| + return static_cast<int64_t>(resolution_.dimensions().width()) *
|
| + resolution_.dimensions().height();
|
| }
|
|
|
| // TODO(jamiewalch): Also compare the DPI: http://crbug.com/172405
|
|
|