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

Side by Side Diff: tools/telemetry/telemetry/extension_to_load.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 import os 4 import os
5 5
6 from telemetry import crx_id 6 from telemetry import crx_id
7 7
8 class ExtensionPathNonExistentException(Exception): 8 class ExtensionPathNonExistentException(Exception):
9 pass 9 pass
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 @property 24 @property
25 def path(self): 25 def path(self):
26 """Path to extension directory.""" 26 """Path to extension directory."""
27 return self._path 27 return self._path
28 28
29 @property 29 @property
30 def is_component(self): 30 def is_component(self):
31 """Whether this extension should be loaded as a component extension.""" 31 """Whether this extension should be loaded as a component extension."""
32 return self._is_component 32 return self._is_component
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/extension_page.py ('k') | tools/telemetry/telemetry/extension_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698