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

Side by Side Diff: telemetry/telemetry/internal/backends/chrome/ios_browser_backend.py

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698