Lines Matching refs:proto
22 Activity.fromProto = function (proto: any): Activity {
23 if (proto == null) {
27 /* proto */ proto.windowToken.windowContainer,
28 /* protoChildren */ proto.windowToken.windowContainer.children.reverse(),
31 /* identifierOverride */ proto.identifier
35 proto.name,
36 proto.state,
37 proto.visible,
38 proto.frontOfTask,
39 proto.procId,
40 proto.translucent,
44 addAttributes(entry, proto);
50 function addAttributes(entry: Activity, proto: any) {
51 entry.proto = proto;