| 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)
|
|
|