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

Side by Side Diff: appengine/chromium_status/static/js/status_viewer/tree_entry.js

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 /** 5 /**
6 * Represents a record in the tree status database. 6 * Represents a record in the tree status database.
7 * 7 *
8 * @param {int} timestamp Unix timestamp in milliseconds. 8 * @param {int} timestamp Unix timestamp in milliseconds.
9 * @param {string} author 9 * @param {string} author
10 * @param {string} message 10 * @param {string} message
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 timeRange.startTime : runs[runs.length - 1].GetEndTime(); 184 timeRange.startTime : runs[runs.length - 1].GetEndTime();
185 if (lastEndTime != timeRange.endTime) { 185 if (lastEndTime != timeRange.endTime) {
186 var unknownEntry = new Entry(timeRange.endTime, Entry.AUTHOR_ORACLE, 186 var unknownEntry = new Entry(timeRange.endTime, Entry.AUTHOR_ORACLE,
187 "Missing data!", "unknown"); 187 "Missing data!", "unknown");
188 runs.push(new Run(unknownEntry, lastEndTime, 188 runs.push(new Run(unknownEntry, lastEndTime,
189 lastEndTime - timeRange.endTime)); 189 lastEndTime - timeRange.endTime));
190 } 190 }
191 191
192 return runs; 192 return runs;
193 } 193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698