1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_COMMON_GEOFENCING_STATUS_H_
6 #define CONTENT_COMMON_GEOFENCING_STATUS_H_
10 enum GeofencingStatus
{
14 // Operation failed because there is no Service Worker.
15 GEOFENCING_STATUS_OPERATION_FAILED_NO_SERVICE_WORKER
,
17 // Operation failed because geofencing is not available.
18 GEOFENCING_STATUS_OPERATION_FAILED_SERVICE_NOT_AVAILABLE
,
20 // Unregistering failed because region was not registered.
21 GEOFENCING_STATUS_UNREGISTRATION_FAILED_NOT_REGISTERED
,
24 GEOFENCING_STATUS_ERROR
,
26 // Used for IPC message range checks.
27 GEOFENCING_STATUS_LAST
= GEOFENCING_STATUS_ERROR
30 const char* GeofencingStatusToString(GeofencingStatus status
);
32 } // namespace content
34 #endif // CONTENT_COMMON_GEOFENCING_STATUS_H_