summaryrefslogtreecommitdiff
path: root/platform/darwin
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin')
-rw-r--r--platform/darwin/http_request_nsurl.mm31
1 files changed, 1 insertions, 30 deletions
diff --git a/platform/darwin/http_request_nsurl.mm b/platform/darwin/http_request_nsurl.mm
index 207c33b23c..10774587c5 100644
--- a/platform/darwin/http_request_nsurl.mm
+++ b/platform/darwin/http_request_nsurl.mm
@@ -1,4 +1,5 @@
#include <mbgl/storage/http_context.hpp>
+#include <mbgl/storage/http_request_base.hpp>
#include <mbgl/storage/resource.hpp>
#include <mbgl/storage/response.hpp>
@@ -12,36 +13,6 @@
namespace mbgl {
-enum class ResponseStatus : uint8_t {
- // This error probably won't be resolved by retrying anytime soon. We are giving up.
- PermanentError,
-
- // This error might be resolved by waiting some time (e.g. server issues).
- // We are going to do an exponential back-off and will try again in a few seconds.
- TemporaryError,
-
- // This error was caused by a temporary error and it is likely that it will be resolved
- // immediately. We are going to try again right away. This is like the TemporaryError, except
- // that we will not perform exponential back-off.
- SingularError,
-
- // This error might be resolved once the network reachability status changes.
- // We are going to watch the network status for changes and will retry as soon as the
- // operating system notifies us of a network status change.
- ConnectionError,
-
- // The request was canceled mid-way.
- Canceled,
-
- // The request returned data successfully. We retrieved and decoded the data successfully.
- Successful,
-
- // The request confirmed that the data wasn't changed. We already have the data.
- NotModified,
-};
-
-// -------------------------------------------------------------------------------------------------
-
class HTTPNSURLContext;
class HTTPRequest : public RequestBase {