mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL makes two changes to SkyShell's HTTP stack: 1) It introduces a disk cache so that responses can be loaded off disk instead of off the network. 2) It makes different instances of NetworkServiceImpl share the same OkHttpContext. Specifically, this means that network requests initiated from Dart share the same cache and connection pool as requests initiated from C++. R=ojan@chromium.org Review URL: https://codereview.chromium.org/1006143003