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

Side by Side Diff: tools/telemetry/telemetry/internal/backends/browser_backend.py

Issue 1224083015: [telemetry] Add support for requesting memory dumps via DevTools API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final adjustments Created 5 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 4
5 from telemetry.core import platform 5 from telemetry.core import platform
6 from telemetry import decorators 6 from telemetry import decorators
7 from telemetry.internal.backends import app_backend 7 from telemetry.internal.backends import app_backend
8 from telemetry.internal.browser import web_contents 8 from telemetry.internal.browser import web_contents
9 from telemetry.internal.platform import profiling_controller_backend 9 from telemetry.internal.platform import profiling_controller_backend
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 return self.IsBrowserRunning() 94 return self.IsBrowserRunning()
95 95
96 def GetStandardOutput(self): 96 def GetStandardOutput(self):
97 raise NotImplementedError() 97 raise NotImplementedError()
98 98
99 def GetStackTrace(self): 99 def GetStackTrace(self):
100 raise NotImplementedError() 100 raise NotImplementedError()
101 101
102 def GetSystemInfo(self): 102 def GetSystemInfo(self):
103 raise NotImplementedError() 103 raise NotImplementedError()
104
105 @property
106 def supports_memory_dumping(self):
107 return False
108
109 def DumpMemory(self, timeout=web_contents.DEFAULT_WEB_CONTENTS_TIMEOUT):
110 raise NotImplementedError()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698