| Index: extensions/common/permissions/socket_permission.h
|
| diff --git a/extensions/common/permissions/socket_permission.h b/extensions/common/permissions/socket_permission.h
|
| index 3fb126217aa435626566e9676177896a1fb2805c..01be06c2ae64a4f09412c505f526cd417307230f 100644
|
| --- a/extensions/common/permissions/socket_permission.h
|
| +++ b/extensions/common/permissions/socket_permission.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef EXTENSIONS_COMMON_PERMISSIONS_SOCKET_PERMISSION_H_
|
| #define EXTENSIONS_COMMON_PERMISSIONS_SOCKET_PERMISSION_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "extensions/common/permissions/api_permission.h"
|
| @@ -19,7 +21,7 @@ class SocketPermission
|
| struct CheckParam : APIPermission::CheckParam {
|
| CheckParam(content::SocketPermissionRequest::OperationType type,
|
| const std::string& host,
|
| - uint16 port)
|
| + uint16_t port)
|
| : request(type, host, port) {}
|
| content::SocketPermissionRequest request;
|
| };
|
|
|