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

Unified Diff: mojo/services/network/interfaces/url_loader_interceptor.mojom

Issue 1741963002: Auto-formatted all .mojom files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 9 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: mojo/services/network/interfaces/url_loader_interceptor.mojom
diff --git a/mojo/services/network/interfaces/url_loader_interceptor.mojom b/mojo/services/network/interfaces/url_loader_interceptor.mojom
index 6524157b075c70c99637175a232dc9f66d752ff9..2e3992d27efea5cd1a8486ce3b8c97c80f1ffecf 100644
--- a/mojo/services/network/interfaces/url_loader_interceptor.mojom
+++ b/mojo/services/network/interfaces/url_loader_interceptor.mojom
@@ -27,8 +27,8 @@ interface URLLoaderInterceptor {
// Intercept a request before it is sent to the network. This method can
// transform the request by returning the new requests to consider, or
// respond to the request itself by returning a response.
- InterceptRequest(URLRequest request) =>
- (URLLoaderInterceptorResponse response);
+ InterceptRequest(URLRequest request)
+ => (URLLoaderInterceptorResponse response);
// Intercept |URLLoader.FollowRedirect()| calls. This method can either
// return null to let the call through, return a request to change the
@@ -39,8 +39,8 @@ interface URLLoaderInterceptor {
// can transform the response by returning the new response to send, ask
// the loader to load a new request instead by returning the request to load,
// or if the response is a redirect, follow it by returning null.
- InterceptResponse(URLResponse response) =>
- (URLLoaderInterceptorResponse? response);
+ InterceptResponse(URLResponse response)
+ => (URLLoaderInterceptorResponse? response);
};
// Response for the intercept methods. One and only one of the two fields
« no previous file with comments | « mojo/services/network/interfaces/udp_socket.mojom ('k') | mojo/services/network/interfaces/web_socket.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698