| Index: third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
|
| index dbe4f44a39d95559f4ff7ffb20edb8a5de74dfe7..e617a0c6edb598a6435c4d612a6778ffd53e1e85 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
|
| @@ -9,7 +9,7 @@
|
| */
|
| WebInspector.TracingManagerClient = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.TracingManagerClient.prototype = {
|
| tracingStarted: function() { },
|
| @@ -26,7 +26,7 @@ WebInspector.TracingManagerClient.prototype = {
|
| * @param {number} progress
|
| */
|
| eventsRetrievalProgress: function(progress) { }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -41,7 +41,7 @@ WebInspector.TracingManager = function(target)
|
| this._activeClient = null;
|
| this._eventBufferSize = 0;
|
| this._eventsRetrieved = 0;
|
| -}
|
| +};
|
|
|
| /** @typedef {!{
|
| cat: string,
|
| @@ -134,7 +134,7 @@ WebInspector.TracingManager.prototype = {
|
| this._finishing = true;
|
| this._target.tracingAgent().end();
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -144,7 +144,7 @@ WebInspector.TracingManager.prototype = {
|
| WebInspector.TracingDispatcher = function(tracingManager)
|
| {
|
| this._tracingManager = tracingManager;
|
| -}
|
| +};
|
|
|
| WebInspector.TracingDispatcher.prototype = {
|
| /**
|
| @@ -174,4 +174,4 @@ WebInspector.TracingDispatcher.prototype = {
|
| {
|
| this._tracingManager._tracingComplete();
|
| }
|
| -}
|
| +};
|
|
|