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

Unified Diff: third_party/WebKit/Source/devtools/front_end/main/Main.js

Issue 2057243003: DevTools: [network] Show request start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Common.UIString Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/main/Main.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
index 5ba641dd25c941a8cb67763e814a84351bb65c33..28e0ec6bfd39e37f7bbaea11a3e1965f3115b5d3 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -839,10 +839,10 @@ Main.Main.InspectedNodeRevealer = class {
*/
Main.sendOverProtocol = function(method, params) {
return new Promise((resolve, reject) => {
- Protocol.InspectorBackend.sendRawMessageForTesting(method, params, (err, result) => {
+ Protocol.InspectorBackend.sendRawMessageForTesting(method, params, (err, ...results) => {
if (err)
return reject(err);
- return resolve(result);
+ return resolve(results);
});
});
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698