OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 module content.mojom; | |
6 | |
7 import "content/common/url_loader_factory.mojom"; | |
8 | |
9 // The primordial interface implemented by a render process host. This should be | |
10 // used for implementing renderer-to-browser messages. | |
11 interface RendererHost { | |
12 // Returns a URLLoaderFactory for the blob scheme. | |
Ken Rockot(use gerrit already)
2017/06/06 21:49:58
super nit: maybe s/Returns/Requests/
jam
2017/06/06 22:14:39
Done.
| |
13 GetBlobURLLoaderFactory(URLLoaderFactory& loader); | |
14 }; | |
OLD | NEW |