Package com.google.speedtracer.client.messages

Examples of com.google.speedtracer.client.messages.RecordingDataMessage


        final InitializeMonitorMessage initMessage = data.cast();
        initialize(initMessage.getTabDescription(), initMessage.getHandle(),
            initMessage.getVersion());
        break;
      case RecordingDataMessage.TYPE:
        final RecordingDataMessage recordingDataMessage = data.cast();
        recordingDataReceived(recordingDataMessage.isRecording());
        break;
      case ResendProfilingOptions.TYPE:
        controller.sendProfilingOptions();
        break;
      default:
View Full Code Here


            }
          }

          private void doRecordingData(Client channel,
              WindowChannel.Message data) {
            final RecordingDataMessage recordingDataMessage = data.cast();
            int tabId = recordingDataMessage.getTabId();
            int browserId = recordingDataMessage.getBrowserId();
            TabModel tabModel = browserConnectionMap.get(browserId).tabMap.get(tabId);
            Icon pageActionIcon;
            if (recordingDataMessage.isRecording()) {
              tabModel.dataInstance.resumeMonitoring();
              pageActionIcon = browserAction.mtIconActive();
              // We need to ensure that the profiling options are in synch in
              // the browser with the current state reflected in the UI.
              channel.sendMessage(ResendProfilingOptions.TYPE,
View Full Code Here

TOP

Related Classes of com.google.speedtracer.client.messages.RecordingDataMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.