| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import contextlib | 5 import contextlib |
| 6 import json | 6 import json |
| 7 import logging | 7 import logging |
| 8 import re | 8 import re |
| 9 import urllib2 | 9 import urllib2 |
| 10 | 10 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 def HasBrowserFinishedLaunching(self): | 137 def HasBrowserFinishedLaunching(self): |
| 138 logging.warn('Not implemented') | 138 logging.warn('Not implemented') |
| 139 return False | 139 return False |
| 140 | 140 |
| 141 def GetStandardOutput(self): | 141 def GetStandardOutput(self): |
| 142 raise NotImplementedError() | 142 raise NotImplementedError() |
| 143 | 143 |
| 144 def GetStackTrace(self): | 144 def GetStackTrace(self): |
| 145 raise NotImplementedError() | 145 raise NotImplementedError() |
| 146 |
| 147 def GetMostRecentMinidumpPath(self): |
| 148 return None |
| 149 |
| 150 def GetAllMinidumpPaths(self): |
| 151 return None |
| 152 |
| 153 def GetAllUnsymbolizedMinidumpPaths(self): |
| 154 return None |
| 155 |
| 156 def SymbolizeMinidump(self, minidump_path): |
| 157 return None |
| OLD | NEW |