- add sources.
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / core / backends / chrome / websocket.py
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 from __future__ import absolute_import
5
6 from telemetry.core import util
7
8 util.AddDirToPythonPath(
9     util.GetTelemetryDir(), 'third_party', 'websocket-client')
10 from websocket import create_connection  # pylint: disable=W0611
11 from websocket import WebSocketException  # pylint: disable=W0611
12 from websocket import WebSocketTimeoutException  # pylint: disable=W0611