Exemplo n.º 1
0
 public TimelineEvents(
     IPrefixMatcher matcher
     )
 {
     devToolsNetworkEventPrefix1 = matcher.RegisterPrefix(DevTools.Events.Network.Base.Prefix1);
     devToolsNetworkEventPrefix2 = matcher.RegisterPrefix(DevTools.Events.Network.Base.Prefix2);
 }
Exemplo n.º 2
0
        public WebRtcStateInspector(
            IPrefixMatcher matcher
            )
        {
            sessionPrefix            = matcher.RegisterPrefix("Session:");
            connPrefix               = matcher.RegisterPrefix("Jingle:Conn[");
            prefixlessConnPrefix     = matcher.RegisterPrefix("Conn[");
            portPrefix               = matcher.RegisterPrefix("Jingle:Port[");
            audioRecvStreamCtrPrefix = matcher.RegisterPrefix("AudioReceiveStream: {");
            audioRecvStreamDtrPrefix = matcher.RegisterPrefix("~AudioReceiveStream: {");
            audioSendStreamCtrPrefix = matcher.RegisterPrefix("AudioSendStream: {");
            audioSendStreamDtrPrefix = matcher.RegisterPrefix("~AudioSendStream: {");
            videoRecvStreamCtrPrefix = matcher.RegisterPrefix("VideoReceiveStream: {");
            videoRecvStreamDtrPrefix = matcher.RegisterPrefix("~VideoReceiveStream: {");
            videoSendStreamCtrPrefix = matcher.RegisterPrefix("VideoSendStreamInternal: {");
            videoSendStreamDtrPrefix = matcher.RegisterPrefix("~VideoSendStreamInternal: {");

            connReGroupNames      = GetReGroupNames(connCreatedRe);
            portReGroupNames      = GetReGroupNames(portGeneric);
            candidateReGroupNames = GetReGroupNames(new Regex(string.Format(candidateRePattern, ""), RegexOptions.ExplicitCapture));
        }
Exemplo n.º 3
0
 public NodeDetectionTokenSource(IProcessIdDetector processIdDetector, IPrefixMatcher prefixMatcher)
 {
     this.processIdDetector = processIdDetector;
     this.consoleApiPrefix  = prefixMatcher.RegisterPrefix(DevTools.Events.Runtime.LogAPICalled.Prefix);
 }
Exemplo n.º 4
0
 public ProcessIdDetector(IPrefixMatcher prefixMatcher)
 {
     dataCollectedPrefix1 = prefixMatcher.RegisterPrefix(DevTools.Events.Tracing.DataCollected.Prefix1);
     dataCollectedPrefix2 = prefixMatcher.RegisterPrefix(DevTools.Events.Tracing.DataCollected.Prefix2);
 }
 public CITimelineEvents(IPrefixMatcher matcher)
 {
     devToolsConsoleEventPrefix = matcher.RegisterPrefix(CD.DevTools.Events.Runtime.LogAPICalled.Prefix1);
 }