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

Side by Side Diff: components/arc/common/arc_bridge.mojom

Issue 2747363002: Revert of arc: enable Android tracing from chrome://tracing in dev mode (Closed)
Patch Set: Created 3 years, 9 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 | « components/arc/arc_bridge_service.h ('k') | components/arc/common/tracing.mojom » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 arc.mojom; 5 module arc.mojom;
6 6
7 import "accessibility_helper.mojom"; 7 import "accessibility_helper.mojom";
8 import "app.mojom"; 8 import "app.mojom";
9 import "audio.mojom"; 9 import "audio.mojom";
10 import "auth.mojom"; 10 import "auth.mojom";
11 import "bluetooth.mojom"; 11 import "bluetooth.mojom";
12 import "boot_phase_monitor.mojom"; 12 import "boot_phase_monitor.mojom";
13 import "clipboard.mojom"; 13 import "clipboard.mojom";
14 import "crash_collector.mojom"; 14 import "crash_collector.mojom";
15 import "enterprise_reporting.mojom"; 15 import "enterprise_reporting.mojom";
16 import "file_system.mojom"; 16 import "file_system.mojom";
17 import "ime.mojom"; 17 import "ime.mojom";
18 import "intent_helper.mojom"; 18 import "intent_helper.mojom";
19 import "kiosk.mojom"; 19 import "kiosk.mojom";
20 import "metrics.mojom"; 20 import "metrics.mojom";
21 import "net.mojom"; 21 import "net.mojom";
22 import "notifications.mojom"; 22 import "notifications.mojom";
23 import "obb_mounter.mojom"; 23 import "obb_mounter.mojom";
24 import "policy.mojom"; 24 import "policy.mojom";
25 import "power.mojom"; 25 import "power.mojom";
26 import "print.mojom"; 26 import "print.mojom";
27 import "process.mojom"; 27 import "process.mojom";
28 import "storage_manager.mojom"; 28 import "storage_manager.mojom";
29 import "tracing.mojom";
30 import "tts.mojom"; 29 import "tts.mojom";
31 import "video.mojom"; 30 import "video.mojom";
32 import "wallpaper.mojom"; 31 import "wallpaper.mojom";
33 32
34 // Next MinVersion: 23 33 // Next MinVersion: 22
35 // Deprecated method IDs: 101, 105 34 // Deprecated method IDs: 101, 105
36 // Next method ID: 129 35 // Next method ID: 128
37 interface ArcBridgeHost { 36 interface ArcBridgeHost {
38 // Keep the entries alphabetical. In order to do so without breaking 37 // Keep the entries alphabetical. In order to do so without breaking
39 // compatibility with the ARC instance, explicitly assign each interface a 38 // compatibility with the ARC instance, explicitly assign each interface a
40 // unique ordinal. 39 // unique ordinal.
41 40
42 // Notifies Chrome that the AccessibilityHelperInstance interface is ready. 41 // Notifies Chrome that the AccessibilityHelperInstance interface is ready.
43 [MinVersion=21] OnAccessibilityHelperInstanceReady@127( 42 [MinVersion=21] OnAccessibilityHelperInstanceReady@127(
44 AccessibilityHelperInstance instance_ptr); 43 AccessibilityHelperInstance instance_ptr);
45 44
46 // Notifies Chrome that the AppInstance interface is ready. 45 // Notifies Chrome that the AppInstance interface is ready.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 103
105 // Notifies Chrome that the PrintInstance interface is ready. 104 // Notifies Chrome that the PrintInstance interface is ready.
106 [MinVersion=16] OnPrintInstanceReady@121(PrintInstance instance_ptr); 105 [MinVersion=16] OnPrintInstanceReady@121(PrintInstance instance_ptr);
107 106
108 // Notifies Chrome that the ProcessInstance interface is ready. 107 // Notifies Chrome that the ProcessInstance interface is ready.
109 OnProcessInstanceReady@104(ProcessInstance instance_ptr); 108 OnProcessInstanceReady@104(ProcessInstance instance_ptr);
110 109
111 // Notifies Chrome that the StorageManagerInstance interface is ready. 110 // Notifies Chrome that the StorageManagerInstance interface is ready.
112 [MinVersion=12] OnStorageManagerInstanceReady@118(StorageManagerInstance insta nce_ptr); 111 [MinVersion=12] OnStorageManagerInstanceReady@118(StorageManagerInstance insta nce_ptr);
113 112
114 // Notifies Chrome that the TracingInstance interface is ready.
115 [MinVersion=22] OnTracingInstanceReady@128(TracingInstance instance_ptr);
116
117 // Notifies Chrome that the TtsInstance interface is ready. 113 // Notifies Chrome that the TtsInstance interface is ready.
118 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr); 114 [MinVersion=17] OnTtsInstanceReady@123(TtsInstance instance_ptr);
119 115
120 // Notifies Chrome that the VideoInstance interface is ready. 116 // Notifies Chrome that the VideoInstance interface is ready.
121 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr); 117 [MinVersion=6] OnVideoInstanceReady@107(VideoInstance instance_ptr);
122 118
123 // Notifies Chrome that the WallpaperInstance interface is ready. 119 // Notifies Chrome that the WallpaperInstance interface is ready.
124 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr); 120 [MinVersion=18] OnWallpaperInstanceReady@124(WallpaperInstance instance_ptr);
125 }; 121 };
126 122
127 interface ArcBridgeInstance { 123 interface ArcBridgeInstance {
128 // Establishes full-duplex communication with the host. 124 // Establishes full-duplex communication with the host.
129 // |host_ptr| is the MessagePipe endpoint that is bound to the 125 // |host_ptr| is the MessagePipe endpoint that is bound to the
130 // ArcBridgeHostPtr binding. 126 // ArcBridgeHostPtr binding.
131 Init@0(ArcBridgeHost host_ptr); 127 Init@0(ArcBridgeHost host_ptr);
132 }; 128 };
OLDNEW
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/common/tracing.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698