OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "services/service_manager/public/interfaces/interface_provider.mojom"; | 7 import "services/service_manager/public/interfaces/interface_provider.mojom"; |
8 | 8 |
| 9 // The name of the InterfaceProviderSpec in service manifests used by the |
| 10 // frame tree to expose frame-specific interfaces between renderer and browser. |
| 11 const string kNavigation_FrameSpec = "navigation:frame"; |
| 12 |
9 // Implemented by the frame provider (e.g. renderer processes). | 13 // Implemented by the frame provider (e.g. renderer processes). |
10 interface Frame { | 14 interface Frame { |
11 GetInterfaceProvider(service_manager.mojom.InterfaceProvider& interfaces); | 15 GetInterfaceProvider(service_manager.mojom.InterfaceProvider& interfaces); |
12 }; | 16 }; |
13 | 17 |
14 // Implemented by the frame server (i.e. the browser process). | 18 // Implemented by the frame server (i.e. the browser process). |
15 interface FrameHost { | 19 interface FrameHost { |
16 GetInterfaceProvider(service_manager.mojom.InterfaceProvider& interfaces); | 20 GetInterfaceProvider(service_manager.mojom.InterfaceProvider& interfaces); |
17 }; | 21 }; |
18 | 22 |
19 // Implemented by a service that provides implementations of the Frame | 23 // Implemented by a service that provides implementations of the Frame |
20 // interface. (e.g. renderer processes). | 24 // interface. (e.g. renderer processes). |
21 interface FrameFactory { | 25 interface FrameFactory { |
22 CreateFrame(int32 frame_routing_id, Frame& frame, FrameHost host); | 26 CreateFrame(int32 frame_routing_id, Frame& frame, FrameHost host); |
23 }; | 27 }; |
OLD | NEW |