Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import os | |
| 6 | |
| 7 import tvcm_stub | |
| 8 | |
| 9 from trace_viewer import trace_viewer_project | |
| 10 | |
| 11 | |
| 12 class SpyProject(trace_viewer_project.TraceViewerProject): | |
| 13 spy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), | |
| 14 '..')) | |
| 15 | |
| 16 def __init__(self): | |
| 17 super(SpyProject, self).__init__( | |
| 18 [self.spy_path]) | |
| OLD | NEW |