Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1307)

Unified Diff: content/common/network_service.mojom

Issue 2964503003: Move NetworkService mojom files to content/public/common. (Closed)
Patch Set: Merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/network_service.mojom
diff --git a/content/common/network_service.mojom b/content/common/network_service.mojom
deleted file mode 100644
index a771cbd96b1e628f307c29a33232605130a4ca7d..0000000000000000000000000000000000000000
--- a/content/common/network_service.mojom
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-module content.mojom;
-
-import "mojo/common/file_path.mojom";
-import "url_loader.mojom";
-import "url_loader_factory.mojom";
-import "url/mojo/url.mojom";
-
-// Parameters for constructing a network context.
-struct NetworkContextParams {
- // Points to the cookie file. If null, an in-memory database is used.
- mojo.common.mojom.FilePath? cookie_path;
- // Points to the cache directory. If null, an in-memory database is used.
- mojo.common.mojom.FilePath? cache_dir;
-};
-
-// Represents a distinct context for making network requests, with its own
-// storage (e.g. cookies and cache).
-interface NetworkContext {
- // |process_id| is 0 for requests initiated in the browser process, otherwise
- // it's the child process ID.
- CreateURLLoaderFactory(URLLoaderFactory& url_loader_factory,
- uint32 process_id);
-
- // Handle a request to display cache data to the user. |url| is parsed to
- // display different parts of the cache.
- HandleViewCacheRequest(url.mojom.Url url,
- URLLoaderClient client);
-};
-
-// Browser interface to the network service.
-interface NetworkService {
- // Creates a new network context with the given parameters.
- CreateNetworkContext(NetworkContext& context,
- NetworkContextParams params);
-};

Powered by Google App Engine
This is Rietveld 408576698