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

Side by Side Diff: content/common/frame.mojom

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « content/common/child_process_host_impl.cc ('k') | content/common/service_manager/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/shell/public/interfaces/interface_provider.mojom"; 7 import "services/service_manager/public/interfaces/interface_provider.mojom";
8 8
9 // Implemented by the frame provider (e.g. renderer processes). 9 // Implemented by the frame provider (e.g. renderer processes).
10 interface Frame { 10 interface Frame {
11 GetInterfaceProvider(shell.mojom.InterfaceProvider& interfaces); 11 GetInterfaceProvider(shell.mojom.InterfaceProvider& interfaces);
12 }; 12 };
13 13
14 // Implemented by the frame server (i.e. the browser process). 14 // Implemented by the frame server (i.e. the browser process).
15 interface FrameHost { 15 interface FrameHost {
16 GetInterfaceProvider(shell.mojom.InterfaceProvider& interfaces); 16 GetInterfaceProvider(shell.mojom.InterfaceProvider& interfaces);
17 }; 17 };
18 18
19 // Implemented by a service that provides implementations of the Frame 19 // Implemented by a service that provides implementations of the Frame
20 // interface. (e.g. renderer processes). 20 // interface. (e.g. renderer processes).
21 interface FrameFactory { 21 interface FrameFactory {
22 CreateFrame(int32 frame_routing_id, Frame& frame, FrameHost host); 22 CreateFrame(int32 frame_routing_id, Frame& frame, FrameHost host);
23 }; 23 };
OLDNEW
« no previous file with comments | « content/common/child_process_host_impl.cc ('k') | content/common/service_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698