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

Unified Diff: tools/telemetry/telemetry/timeline/model.py

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/telemetry/telemetry/timeline/event_container.py ('k') | tools/telemetry/telemetry/timeline/thread.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/timeline/model.py
diff --git a/tools/telemetry/telemetry/timeline/model.py b/tools/telemetry/telemetry/timeline/model.py
index 33fdba323b86763a3dbaa485f4c8a220ee6e6e82..23fa040bd808c36b2a7065c71048c89530cc2414 100644
--- a/tools/telemetry/telemetry/timeline/model.py
+++ b/tools/telemetry/telemetry/timeline/model.py
@@ -106,32 +106,26 @@ class TimelineModel(event_container.TimelineEventContainer):
return self._processes
@property
- #pylint: disable=E0202
def browser_process(self):
return self._browser_process
@browser_process.setter
- #pylint: disable=E0202
def browser_process(self, browser_process):
self._browser_process = browser_process
@property
- #pylint: disable=E0202
def gpu_process(self):
return self._gpu_process
@gpu_process.setter
- #pylint: disable=E0202
def gpu_process(self, gpu_process):
self._gpu_process = gpu_process
@property
- #pylint: disable=E0202
def surface_flinger_process(self):
return self._surface_flinger_process
@surface_flinger_process.setter
- #pylint: disable=E0202
def surface_flinger_process(self, surface_flinger_process):
self._surface_flinger_process = surface_flinger_process
« no previous file with comments | « tools/telemetry/telemetry/timeline/event_container.py ('k') | tools/telemetry/telemetry/timeline/thread.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698