summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/local_file_source.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/storage/local_file_source.hpp')
-rw-r--r--src/mbgl/storage/local_file_source.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/storage/local_file_source.hpp b/src/mbgl/storage/local_file_source.hpp
index 0f065e0b5f..39ebc8c4bd 100644
--- a/src/mbgl/storage/local_file_source.hpp
+++ b/src/mbgl/storage/local_file_source.hpp
@@ -14,12 +14,12 @@ public:
~LocalFileSource() override;
std::unique_ptr<AsyncRequest> request(const Resource&, Callback) override;
-
- static bool acceptsURL(const std::string& url);
+ bool canRequest(const Resource&) const override;
+ void pause() override;
+ void resume() override;
private:
class Impl;
-
std::unique_ptr<util::Thread<Impl>> impl;
};