Index: trunk/src/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py |
=================================================================== |
--- trunk/src/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py (revision 226832) |
+++ trunk/src/tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py (working copy) |
@@ -1,19 +0,0 @@ |
-# Copyright 2013 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. |
- |
-from telemetry.core import browser |
-from telemetry.core.backends.chrome import cros_browser_backend |
- |
-class CrOSBrowserWithOOBE(browser.Browser): |
- """Cros-specific browser.""" |
- def __init__(self, backend, platform_backend): |
- assert isinstance(backend, cros_browser_backend.CrOSBrowserBackend) |
- super(CrOSBrowserWithOOBE, self).__init__(backend, platform_backend) |
- |
- @property |
- def oobe(self): |
- """The login webui (also serves as ui for screenlock and |
- out-of-box-experience). |
- """ |
- return self._browser_backend.oobe |