| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 | 4 |
| 5 | 5 |
| 6 class PossibleApp(object): | 6 class PossibleApp(object): |
| 7 """A factory class that can be used to create a running instance of app. | 7 """A factory class that can be used to create a running instance of app. |
| 8 | 8 |
| 9 Call Create() to launch the app and begin manipulating it. | 9 Call Create() to launch the app and begin manipulating it. |
| 10 """ | 10 """ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 def platform(self): | 31 def platform(self): |
| 32 self._InitPlatformIfNeeded() | 32 self._InitPlatformIfNeeded() |
| 33 return self._platform | 33 return self._platform |
| 34 | 34 |
| 35 def _InitPlatformIfNeeded(self): | 35 def _InitPlatformIfNeeded(self): |
| 36 raise NotImplementedError() | 36 raise NotImplementedError() |
| 37 | 37 |
| 38 def Create(self, finder_options): | 38 def Create(self, finder_options): |
| 39 raise NotImplementedError() | 39 raise NotImplementedError() |
| 40 | 40 |
| 41 def SupportsOptions(self, finder_options): | 41 def SupportsOptions(self, browser_options): |
| 42 """Tests for extension support.""" | 42 """Tests for extension support.""" |
| 43 raise NotImplementedError() | 43 raise NotImplementedError() |
| OLD | NEW |