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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js

Issue 2146063006: [DevTools] Move Timestamp to Runtime, measure it in milliseconds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2139543002
Patch Set: Created 4 years, 5 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
Index: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
index ba2ab8420ccbb2501dcbce5259aa6907508bfc44..5e11f306fa026b457a9403d66cd25aad684cbbc2 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
@@ -385,11 +385,10 @@ WebInspector.RuntimeDispatcher.prototype = {
/**
* @override
- * @param {number} timestamp
* @param {string} message
* @param {number} exceptionId
*/
- exceptionRevoked: function(timestamp, message, exceptionId)
+ exceptionRevoked: function(message, exceptionId)
{
var consoleMessage = new WebInspector.ConsoleMessage(
this._runtimeModel.target(),
@@ -403,7 +402,7 @@ WebInspector.RuntimeDispatcher.prototype = {
undefined,
undefined,
undefined,
- timestamp,
+ undefined,
undefined,
undefined);
consoleMessage.setRevokedExceptionId(exceptionId);

Powered by Google App Engine
This is Rietveld 408576698