OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2013 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 import os |
| 5 |
| 6 from telemetry import crx_id |
| 7 |
| 8 class ExtensionToLoad(object): |
| 9 def __init__(self, path): |
| 10 if not os.path.isdir(path): |
| 11 raise Exception('Extension path not a directory %s' % path) |
| 12 self.path = path |
| 13 |
| 14 def extension_id(self): |
| 15 return crx_id.GetCRXAppID(os.path.abspath(self.path)) |
OLD | NEW |