| 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);
|
|
|