diff options
Diffstat (limited to 'chromium/fuchsia/engine/browser/context_impl.h')
-rw-r--r-- | chromium/fuchsia/engine/browser/context_impl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chromium/fuchsia/engine/browser/context_impl.h b/chromium/fuchsia/engine/browser/context_impl.h index 48ee4a49b9a..53b4218a0b8 100644 --- a/chromium/fuchsia/engine/browser/context_impl.h +++ b/chromium/fuchsia/engine/browser/context_impl.h @@ -20,6 +20,12 @@ class BrowserContext; class WebContents; } // namespace content +namespace network { +namespace mojom { +class NetworkContext; +} // namespace mojom +} // namespace network + class FrameImpl; class WebEngineDevToolsController; @@ -68,6 +74,9 @@ class WEB_ENGINE_EXPORT ContextImpl : public fuchsia::web::Context { } private: + // Returns the NetworkContext from the default StoragePartition. + network::mojom::NetworkContext* GetNetworkContext(); + // Reference to the browser implementation for this Context. content::BrowserContext* const browser_context_; |