| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 """This module provides the global variable options_for_unittests. | 5 """This module provides the global variable options_for_unittests. |
| 6 | 6 |
| 7 This is set to a BrowserOptions object by the test harness, or None | 7 This is set to a BrowserOptions object by the test harness, or None |
| 8 if unit tests are not running. | 8 if unit tests are not running. |
| 9 | 9 |
| 10 This allows multiple unit tests to use a specific | 10 This allows multiple unit tests to use a specific |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 return _options.Copy() | 25 return _options.Copy() |
| 26 | 26 |
| 27 def AreSet(): | 27 def AreSet(): |
| 28 if _options: | 28 if _options: |
| 29 return True | 29 return True |
| 30 return False | 30 return False |
| 31 | 31 |
| 32 def GetBrowserType(): | 32 def GetBrowserType(): |
| 33 return _browser_type | 33 return _browser_type |
| OLD | NEW |