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

Unified Diff: mojo/public/interfaces/network/url_response.mojom

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « mojo/public/interfaces/network/url_request.mojom ('k') | mojo/public/java/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/interfaces/network/url_response.mojom
diff --git a/mojo/public/interfaces/network/url_response.mojom b/mojo/public/interfaces/network/url_response.mojom
deleted file mode 100644
index aa09f74c4b2d3c5b721e0c5412fbbdc90adb571b..0000000000000000000000000000000000000000
--- a/mojo/public/interfaces/network/url_response.mojom
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2015 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.
-
-[DartPackage="mojo"]
-module mojo;
-
-import "mojo/public/interfaces/network/http_header.mojom";
-import "mojo/public/interfaces/network/network_error.mojom";
-
-struct URLResponse {
- // If the response resulted in a network level error, this field will be set.
- NetworkError? error;
-
- // The response body stream. Read from this data pipe to receive the bytes of
- // response body.
- handle<data_pipe_consumer>? body;
-
- // The final URL of the response, after redirects have been followed.
- string? url;
-
- // The HTTP status code. 0 if not applicable.
- uint32 status_code;
-
- // The HTTP status line.
- string? status_line;
-
- // The HTTP response headers.
- array<HttpHeader>? headers;
-
- // The MIME type of the response body.
- string? mime_type;
-
- // The character set of the response body.
- string? charset;
-
- // These fields are set to non-NULL if this response corresponds to a
- // redirect. Call the |FollowRedirect| method on the URLLoader instance to
- // follow this redirect.
- string? redirect_method;
- string? redirect_url;
- string? redirect_referrer;
-};
« no previous file with comments | « mojo/public/interfaces/network/url_request.mojom ('k') | mojo/public/java/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698