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

Side by Side Diff: tools/telemetry/run.py

Issue 928643002: [NOT FOR SUBMIT] Profile the time spent in BrowserOptions.CreateParser() method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « profiling.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import cProfile
2 import os
3 import sys
4
5 sys.path.append(os.path.join(os.path.dirname(__file__)))
6
7 from telemetry.core import browser_options
8
9 def CreateParser():
10 options = browser_options.BrowserFinderOptions()
11 options.CreateParser()
12
13 if __name__ == '__main__':
14 CreateParser()
OLDNEW
« no previous file with comments | « profiling.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698