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

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

Issue 23072018: [telemetry] Move telemetry/core/chrome/ to telemetry/core/backends/chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix perf smoothness_unittest. Created 7 years, 4 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/misc_web_contents_backend.py
diff --git a/tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py b/tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py
deleted file mode 100644
index f3a4ab753784e3572f120cf149d74ba1c789a36f..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py
+++ /dev/null
@@ -1,38 +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
-
-from telemetry.core import web_contents
-from telemetry.core.chrome import inspector_backend
-
-class MiscWebContentsBackend(object):
- """Provides acccess to chrome://oobe/login page, which is neither an extension
- nor a tab."""
- def __init__(self, browser_backend):
- self._browser_backend = browser_backend
-
- def GetOobe(self):
- oobe_web_contents_info = self._FindWebContentsInfo()
- if oobe_web_contents_info:
- debugger_url = oobe_web_contents_info.get('webSocketDebuggerUrl')
- if debugger_url:
- inspector = self._CreateInspectorBackend(debugger_url)
- return web_contents.WebContents(inspector)
- return None
-
- def _CreateInspectorBackend(self, debugger_url):
- return inspector_backend.InspectorBackend(self._browser_backend.browser,
- self._browser_backend,
- debugger_url)
-
- def _ListWebContents(self, timeout=None):
- data = self._browser_backend.Request('', timeout=timeout)
- return json.loads(data)
-
- def _FindWebContentsInfo(self):
- for web_contents_info in self._ListWebContents():
- # Prior to crrev.com/203152, url was chrome://oobe/login.
- if (web_contents_info.get('url').startswith('chrome://oobe')):
- return web_contents_info
- return None

Powered by Google App Engine
This is Rietveld 408576698