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

Side by Side Diff: content/public/common/url_loader.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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module content.mojom; 5 module content.mojom;
6 6
7 [Native] 7 [Native]
8 struct URLRequest; 8 struct URLRequest;
9 9
10 [Native] 10 [Native]
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 // Called when the loader starts loading response body. This is called after 93 // Called when the loader starts loading response body. This is called after
94 // OnReceiveResponse is called. 94 // OnReceiveResponse is called.
95 OnStartLoadingResponseBody(handle<data_pipe_consumer> body); 95 OnStartLoadingResponseBody(handle<data_pipe_consumer> body);
96 96
97 // Called when the loading completes. No notification will be dispatched for 97 // Called when the loading completes. No notification will be dispatched for
98 // this client after this message arrives. 98 // this client after this message arrives.
99 OnComplete(URLLoaderStatus completion_status); 99 OnComplete(URLLoaderStatus completion_status);
100 }; 100 };
101 101
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698