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

Unified Diff: tools/telemetry_auto/telemetry_auto/__init__.py

Issue 11412238: Proof of concept for running extension API stack through dev tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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
« no previous file with comments | « tools/telemetry_auto/examples/login_test.py ('k') | tools/telemetry_auto/telemetry_auto/oobe_page.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry_auto/telemetry_auto/__init__.py
diff --git a/tools/perf/perf_tools/__init__.py b/tools/telemetry_auto/telemetry_auto/__init__.py
similarity index 85%
copy from tools/perf/perf_tools/__init__.py
copy to tools/telemetry_auto/telemetry_auto/__init__.py
index 910690709428b43b541becdf818659c65b0422eb..5e639a03ba0fe72019289954dd4de681165f3919 100644
--- a/tools/perf/perf_tools/__init__.py
+++ b/tools/telemetry_auto/telemetry_auto/__init__.py
@@ -1,14 +1,15 @@
# 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.
-"""A library for Chrome GPU test code."""
import os
import sys
-def Init():
+def _Init():
telemetry_path = os.path.join(os.path.dirname(__file__),
'..', '..', 'telemetry')
absolute_telemetry_path = os.path.abspath(telemetry_path)
sys.path.append(absolute_telemetry_path)
-Init()
+_Init()
+
+from telemetry_auto.oobe_page import OobePage
« no previous file with comments | « tools/telemetry_auto/examples/login_test.py ('k') | tools/telemetry_auto/telemetry_auto/oobe_page.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698