summaryrefslogtreecommitdiff
path: root/platform/android
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2015-10-26 17:07:10 +0200
committerThiago Marcos P. Santos <thiago@mapbox.com>2015-10-26 18:37:51 +0200
commitc65f809651dccc742d4d549f4dedf794de8623fc (patch)
treeb35ea2ac1181b098405f586ec5596f13402c92c3 /platform/android
parent75dec6ffac6f3e79e5a173cd8a3f98d374ed1c09 (diff)
downloadqtlocation-mapboxgl-c65f809651dccc742d4d549f4dedf794de8623fc.tar.gz
[core] Move parseCacheControl() up in the class hierarchy
Avoid duplicating it on all the ports.
Diffstat (limited to 'platform/android')
-rw-r--r--platform/android/http_request_android.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/platform/android/http_request_android.cpp b/platform/android/http_request_android.cpp
index 6e44db4b13..b909c22128 100644
--- a/platform/android/http_request_android.cpp
+++ b/platform/android/http_request_android.cpp
@@ -2,7 +2,6 @@
#include <mbgl/storage/http_request_base.hpp>
#include <mbgl/storage/resource.hpp>
#include <mbgl/storage/response.hpp>
-#include <mbgl/util/chrono.hpp>
#include <mbgl/platform/log.hpp>
#include <mbgl/android/jni.hpp>
@@ -248,21 +247,6 @@ void HTTPAndroidRequest::finish() {
delete this;
}
-int64_t parseCacheControl(const char *value) {
- if (value) {
- unsigned long long seconds = 0;
- // TODO: cache-control may contain other information as well:
- // http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
- if (std::sscanf(value, "max-age=%llu", &seconds) == 1) {
- return std::chrono::duration_cast<std::chrono::seconds>(
- std::chrono::system_clock::now().time_since_epoch()).count() +
- seconds;
- }
- }
-
- return 0;
-}
-
void HTTPAndroidRequest::onResponse(int code, std::string message, std::string etag, std::string modified, std::string cacheControl, std::string expires, std::string body) {
if (!response) {
response = std::make_unique<Response>();