| Index: components/browser_watcher/exit_funnel_win.cc
|
| diff --git a/components/browser_watcher/exit_funnel_win.cc b/components/browser_watcher/exit_funnel_win.cc
|
| index 5a817684fc734ad436505612b2ebfa534737bb94..abb66dedffc2e234811f1b771b9d2244d825f856 100644
|
| --- a/components/browser_watcher/exit_funnel_win.cc
|
| +++ b/components/browser_watcher/exit_funnel_win.cc
|
| @@ -5,6 +5,7 @@
|
| #include "components/browser_watcher/exit_funnel_win.h"
|
|
|
| #include <windows.h>
|
| +#include <stdint.h>
|
|
|
| #include "base/strings/stringprintf.h"
|
| #include "base/time/time.h"
|
| @@ -54,7 +55,7 @@ bool ExitFunnel::RecordEvent(const base::char16* event_name) {
|
| if (!key_.Valid())
|
| return false;
|
|
|
| - int64 now = base::Time::Now().ToInternalValue();
|
| + int64_t now = base::Time::Now().ToInternalValue();
|
|
|
| LONG res = key_.WriteValue(event_name, &now, sizeof(now), REG_QWORD);
|
| if (res != ERROR_SUCCESS) {
|
|
|