Index: tools/telemetry/telemetry/core/tab_list.py |
=================================================================== |
--- tools/telemetry/telemetry/core/tab_list.py (revision 182999) |
+++ tools/telemetry/telemetry/core/tab_list.py (working copy) |
@@ -1,18 +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. |
-class TabList(object): |
- def __init__(self, tab_list_backend): |
- self._tab_list_backend = tab_list_backend |
- |
- def New(self, timeout=None): |
- return self._tab_list_backend.New(timeout) |
- |
- def __iter__(self): |
- return self._tab_list_backend.__iter__() |
- |
- def __len__(self): |
- return self._tab_list_backend.__len__() |
- |
- def __getitem__(self, index): |
- return self._tab_list_backend.__getitem__(index) |