| Index: content/child/service_worker/service_worker_handle_reference.h
|
| diff --git a/content/child/service_worker/service_worker_handle_reference.h b/content/child/service_worker/service_worker_handle_reference.h
|
| index 3d0fd9c0deec5e64457fbff7135f6669a1f1fba1..d82fb329cbaa48b69d77523d9bf0f14dc0ac81f4 100644
|
| --- a/content/child/service_worker/service_worker_handle_reference.h
|
| +++ b/content/child/service_worker/service_worker_handle_reference.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_HANDLE_REFERENCE_H_
|
| #define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_HANDLE_REFERENCE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
| @@ -37,7 +40,7 @@ class CONTENT_EXPORT ServiceWorkerHandleReference {
|
| int handle_id() const { return info_.handle_id; }
|
| const GURL& url() const { return info_.url; }
|
| blink::WebServiceWorkerState state() const { return info_.state; }
|
| - int64 version_id() const { return info_.version_id; }
|
| + int64_t version_id() const { return info_.version_id; }
|
|
|
| private:
|
| ServiceWorkerHandleReference(const ServiceWorkerObjectInfo& info,
|
|
|