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

Unified Diff: tools/telemetry/telemetry/android/android_story.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: tools/telemetry/telemetry/android/android_story.py
diff --git a/tools/telemetry/telemetry/android/android_story.py b/tools/telemetry/telemetry/android/android_story.py
deleted file mode 100644
index 20f7e93aa173e37b5382cb0e221a7c00c7414113..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/android/android_story.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2014 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.android import shared_android_state
-from telemetry import story
-
-class AndroidStory(story.Story):
- def __init__(self, start_intent, is_app_ready_predicate=None,
- name='', labels=None, is_local=False):
- """Creates a new story for Android app.
-
- Args:
- start_intent: See AndroidPlatform.LaunchAndroidApplication.
- is_app_ready_predicate: See AndroidPlatform.LaunchAndroidApplication.
- name: See Story.__init__.
- labels: See Story.__init__.
- is_app_ready_predicate: See Story.__init__.
- """
- super(AndroidStory, self).__init__(
- shared_android_state.SharedAndroidState, name=name, labels=labels,
- is_local=is_local)
- self.start_intent = start_intent
- self.is_app_ready_predicate = is_app_ready_predicate
-
- def Run(self, shared_state):
- """Execute the interactions with the applications."""
- raise NotImplementedError
« no previous file with comments | « tools/telemetry/telemetry/android/__init__.py ('k') | tools/telemetry/telemetry/android/shared_android_state.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698