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

Unified Diff: tools/telemetry/telemetry/page/compound_action.py

Issue 12278015: [Telemetry] Reorganize everything. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-add shebangs. Created 7 years, 10 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/page/compound_action.py
diff --git a/tools/telemetry/telemetry/compound_action.py b/tools/telemetry/telemetry/page/compound_action.py
similarity index 94%
rename from tools/telemetry/telemetry/compound_action.py
rename to tools/telemetry/telemetry/page/compound_action.py
index 2e71cb83b0e9ddf75b800f41ab2504f8b3dd4594..b1f8a2fa019f28ff79314569ad9a54207489c25c 100644
--- a/tools/telemetry/telemetry/compound_action.py
+++ b/tools/telemetry/telemetry/page/compound_action.py
@@ -1,13 +1,13 @@
# 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.
-from telemetry import page_action
+from telemetry.page import page_action
class CompoundAction(page_action.PageAction):
def __init__(self, attributes=None):
super(CompoundAction, self).__init__(attributes)
self._actions = []
- from telemetry import all_page_actions
+ from telemetry.page import all_page_actions
for action_data in self.actions:
action = all_page_actions.FindClassWithName(
action_data['action'])(action_data)

Powered by Google App Engine
This is Rietveld 408576698