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

Unified Diff: tools/chrome_remote_control/chrome_remote_control/inspector_console.py

Issue 11361165: [chrome_remote_control] Rename chrome_remote_control to telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: tools/chrome_remote_control/chrome_remote_control/inspector_console.py
diff --git a/tools/chrome_remote_control/chrome_remote_control/inspector_console.py b/tools/chrome_remote_control/chrome_remote_control/inspector_console.py
deleted file mode 100644
index b9ea024e673c7bf4cfc4e49ed742589887f53f68..0000000000000000000000000000000000000000
--- a/tools/chrome_remote_control/chrome_remote_control/inspector_console.py
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import json
-import logging
-
-class InspectorConsole(object):
- def __init__(self, inspector_backend):
- self._inspector_backend = inspector_backend
- self._inspector_backend.RegisterDomain(
- 'Console',
- self._OnNotification,
- self._OnClose)
- self._message_output_stream = None
- self._last_message = None
- self._console_enabled = False
-
- def _OnNotification(self, msg):
- logging.debug('Notification: %s', json.dumps(msg, indent=2))
- if msg['method'] == 'Console.messageAdded':
- self._last_message = 'At %s:%i: %s' % (
- msg['params']['message']['url'],
- msg['params']['message']['line'],
- msg['params']['message']['text'])
- if self._message_output_stream:
- self._message_output_stream.write(
- '%s\n' % self._last_message)
-
- elif msg['method'] == 'Console.messageRepeatCountUpdated':
- if self._message_output_stream:
- self._message_output_stream.write(
- '%s\n' % self._last_message)
-
- def _OnClose(self):
- pass
-
- @property
- def MessageOutputStream(self):
- return self._message_output_stream
-
- @MessageOutputStream.setter
- def MessageOutputStream(self, stream):
- self._message_output_stream = stream
- self._UpdateConsoleEnabledState()
-
- def _UpdateConsoleEnabledState(self):
- enabled = self._message_output_stream != None
- if enabled == self._console_enabled:
- return
-
- if enabled:
- method_name = 'enable'
- else:
- method_name = 'disable'
- self._inspector_backend.SyncRequest({
- 'method': 'Console.%s' % method_name
- })
- self._console_enabled = enabled

Powered by Google App Engine
This is Rietveld 408576698