diff options
-rw-r--r-- | content/common/geolocation_messages.h | 3 | ||||
-rw-r--r-- | content/public/common/geoposition.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/content/common/geolocation_messages.h b/content/common/geolocation_messages.h index 2c70a74..f40cdb8 100644 --- a/content/common/geolocation_messages.h +++ b/content/common/geolocation_messages.h @@ -11,7 +11,8 @@ #define IPC_MESSAGE_START GeolocationMsgStart -IPC_ENUM_TRAITS(content::Geoposition::ErrorCode) +IPC_ENUM_TRAITS_MAX_VALUE(content::Geoposition::ErrorCode, + content::Geoposition::ERROR_CODE_LAST) IPC_STRUCT_TRAITS_BEGIN(content::Geoposition) IPC_STRUCT_TRAITS_MEMBER(latitude) diff --git a/content/public/common/geoposition.h b/content/public/common/geoposition.h index 8cbee51..0494696 100644 --- a/content/public/common/geoposition.h +++ b/content/public/common/geoposition.h @@ -25,6 +25,7 @@ struct CONTENT_EXPORT Geoposition { ERROR_CODE_PERMISSION_DENIED = 1, ERROR_CODE_POSITION_UNAVAILABLE = 2, ERROR_CODE_TIMEOUT = 3, + ERROR_CODE_LAST = ERROR_CODE_TIMEOUT }; // All fields are initialized to sentinel values marking them as invalid. The |