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

Unified Diff: tools/telemetry/telemetry/core/chrome/inspector_console.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/chrome/inspector_console.py
===================================================================
--- tools/telemetry/telemetry/core/chrome/inspector_console.py (revision 182999)
+++ tools/telemetry/telemetry/core/chrome/inspector_console.py (working copy)
@@ -1,59 +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
-
- # False positive in PyLint 0.25.1: http://www.logilab.org/89092
- @property
- def message_output_stream(self): # pylint: disable=E0202
- return self._message_output_stream
-
- @message_output_stream.setter
- def message_output_stream(self, stream): # pylint: disable=E0202
- 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