Home | History | Annotate | Download | only in multimedia

Lines Matching refs:extension

194         """Gets the extension from the indicated path.
196 @param extension_path: the path of the target extension.
197 Set to None to get autotest extension.
199 @return an extension object.
201 @raise RuntimeError if the extension is not found.
202 @raise chrome.Error if the found extension has not yet been
208 extension = self._chrome.autotest_ext
210 extension = self._chrome.get_extension(extension_path)
213 # found extension.
215 if not extension:
217 raise RuntimeError('Autotest extension not found')
219 raise RuntimeError('Extension not found in %r'
221 return extension