| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 import "content/common/url_loader_factory.mojom"; | 7 import "content/public/common/url_loader_factory.mojom"; |
| 8 | 8 |
| 9 // The primordial interface implemented by a render process host. This should be | 9 // The primordial interface implemented by a render process host. This should be |
| 10 // used for implementing renderer-to-browser messages. | 10 // used for implementing renderer-to-browser messages. |
| 11 interface RendererHost { | 11 interface RendererHost { |
| 12 // Requests a URLLoaderFactory for the blob scheme. | 12 // Requests a URLLoaderFactory for the blob scheme. |
| 13 GetBlobURLLoaderFactory(URLLoaderFactory& loader); | 13 GetBlobURLLoaderFactory(URLLoaderFactory& loader); |
| 14 }; | 14 }; |
| OLD | NEW |