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

Unified Diff: tools/android/loading/sandwich_metrics.py

Issue 2033093002: sandwich: Merge cache-validation.json and urls-for-resources.json tasks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/android/loading/sandwich_prefetch.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/sandwich_metrics.py
diff --git a/tools/android/loading/sandwich_metrics.py b/tools/android/loading/sandwich_metrics.py
index 351bd8376594acba172e715c5f38c5da3476244d..f46e79a78a26747fb52c069c539bd40817c9d289 100644
--- a/tools/android/loading/sandwich_metrics.py
+++ b/tools/android/loading/sandwich_metrics.py
@@ -135,7 +135,7 @@ def _GetWebPageTrackedEvents(tracing_track):
# hence the first navigationStart in the trace registers the correct frame
# id.
if event_name == 'navigationStart':
- logging.info('Found navigationStart at: %f', event.start_msec)
+ logging.info(' Found navigationStart at: %f', event.start_msec)
main_frame_id = event.args['frame']
continue
@@ -147,7 +147,7 @@ def _GetWebPageTrackedEvents(tracing_track):
# important events (like requestStart) do not have a frame id attached.
if event_name in _TRACKED_EVENT_NAMES and event_name not in tracked_events:
tracked_events[event_name] = event
- logging.info('Event %s first appears at: %f', event_name,
+ logging.info(' Event %s first appears at: %f', event_name,
event.start_msec)
return tracked_events
« no previous file with comments | « no previous file | tools/android/loading/sandwich_prefetch.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698